diff options
author | Ville Skyttä <ville.skytta@iki.fi> | 2009-08-03 21:08:55 +0300 |
---|---|---|
committer | Panu Matilainen <pmatilai@redhat.com> | 2009-10-06 10:47:36 +0300 |
commit | 1892984f0216340f08e928d2bb74202cd8e87cbd (patch) | |
tree | 04494d153d0f59039418f0cfab261762b126fd58 /rpmio | |
parent | dab575b24498e2362845e7da6dc76015fa88b4a9 (diff) | |
download | rpm-1892984f0216340f08e928d2bb74202cd8e87cbd.tar.gz rpm-1892984f0216340f08e928d2bb74202cd8e87cbd.tar.bz2 rpm-1892984f0216340f08e928d2bb74202cd8e87cbd.zip |
Decompress lzma files with xz.
Diffstat (limited to 'rpmio')
-rw-r--r-- | rpmio/macro.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/rpmio/macro.c b/rpmio/macro.c index c87b434c4..11e23a3aa 100644 --- a/rpmio/macro.c +++ b/rpmio/macro.c @@ -979,8 +979,6 @@ doFoo(MacroBuf mb, int negate, const char * f, size_t fn, sprintf(be, "%%__unzip %s", b); break; case COMPRESSED_LZMA: - sprintf(be, "%%__lzma -dc %s", b); - break; case COMPRESSED_XZ: sprintf(be, "%%__xz -dc %s", b); break; |