Add the missing .changes entry OBS-URL: https://build.opensuse.org/request/show/382761 OBS-URL: https://build.opensuse.org/package/show/Base:System/mc?expand=0&rev=102
29 lines
762 B
Diff
29 lines
762 B
Diff
--- src/vfs/extfs/helpers/patchfs.in
|
|
+++ src/vfs/extfs/helpers/patchfs.in
|
|
@@ -80,10 +80,10 @@
|
|
my ($qfname)=(quotemeta $_[0]);
|
|
|
|
$_=`$fileutil $qfname`;
|
|
- } elsif (/^'*lzip/) {
|
|
- return "$lzip -dc $qfname";
|
|
if (/^'*lz4/) {
|
|
return "$lz4 -dc $qfname";
|
|
+ } elsif (/^'*lzip/) {
|
|
+ return "$lzip -dc $qfname";
|
|
} elsif (/^'*lzma/) {
|
|
return "$lzma -dc $qfname";
|
|
} elsif (/^'*xz/) {
|
|
@@ -104,10 +104,10 @@
|
|
my ($sep) = $append ? '>>' : '>';
|
|
|
|
$_=`$fileutil $qfname`;
|
|
- } elsif (/^'*lzip/) {
|
|
- return "$lzip -c $sep $qfname";
|
|
if (/^'*lz4/) {
|
|
return "$lz4 -c $sep $qfname";
|
|
+ } elsif (/^'*lzip/) {
|
|
+ return "$lzip -c $sep $qfname";
|
|
} elsif (/^'*lzma/) {
|
|
return "$lzma -c $sep $qfname";
|
|
} elsif (/^'*xz/) {
|