Skip to content

Commit

Permalink
use '.drpm' suffix instead of '.delta.rpm'
Browse files Browse the repository at this point in the history
'.drpm' is easier to handle as it doesn't match '*.rpm'
  • Loading branch information
lnussel committed Oct 27, 2010
1 parent 9d8475a commit 9d380fb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build
Original file line number Diff line number Diff line change
Expand Up @@ -2001,7 +2001,7 @@ if test -n "$RUNNING_IN_VM" -a -n "$VM_SWAP"; then
args="--padstart 512 --padend 512 -v"
case "$BUILDTYPE" in
spec)
computeblocklists $args $TOPDIR/RPMS/*/*.rpm $TOPDIR/SRPMS/* > "$VM_SWAP"
computeblocklists $args $TOPDIR/RPMS/*/*.{d,}rpm $TOPDIR/SRPMS/* > "$VM_SWAP"
;;
dsc)
computeblocklists $args $TOPDIR/DEBS/*.deb $TOPDIR/SOURCES.DEB/* > "$VM_SWAP"
Expand Down
2 changes: 1 addition & 1 deletion mkdrpms
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ for my $dir (@ARGV) {
$r .= '_'.$q->{'release'} unless $r eq $q->{'release'};
my $on = $old->{'file'};
my $nn = $q->{'file'};
my $dn = sprintf("%s-%s-%s.%s.delta.rpm", $q->{'name'}, $v, $r, $q->{'arch'});
my $dn = sprintf("%s-%s-%s.%s.drpm", $q->{'name'}, $v, $r, $q->{'arch'});
print "$dn ... ";
$dn = $dir.'/'.$dn;
my $ret = system('makedeltarpm', $on, $nn, $dn);
Expand Down

0 comments on commit 9d380fb

Please sign in to comment.