Michael Schröder
a6846b83ca
* updated python bindings * new transaction ordering code OBS-URL: https://build.opensuse.org/package/show/Base:System/rpm?expand=0&rev=40
24 lines
774 B
Diff
24 lines
774 B
Diff
--- ./build/pack.c.orig 2010-03-25 15:18:23.000000000 +0000
|
|
+++ ./build/pack.c 2010-03-25 15:23:54.000000000 +0000
|
|
@@ -375,7 +375,9 @@ rpmRC writeRPM(Header *hdrp, unsigned ch
|
|
const char *compr = NULL;
|
|
headerPutString(h, RPMTAG_PAYLOADFORMAT, "cpio");
|
|
|
|
- if (rstreq(s+1, "gzdio")) {
|
|
+ if (rstreq(s+1, "ufdio")) {
|
|
+ compr = NULL;
|
|
+ } else if (rstreq(s+1, "gzdio")) {
|
|
compr = "gzip";
|
|
#if HAVE_BZLIB_H
|
|
} else if (rstreq(s+1, "bzdio")) {
|
|
@@ -398,7 +400,8 @@ rpmRC writeRPM(Header *hdrp, unsigned ch
|
|
goto exit;
|
|
}
|
|
|
|
- headerPutString(h, RPMTAG_PAYLOADCOMPRESSOR, compr);
|
|
+ if (compr)
|
|
+ headerPutString(h, RPMTAG_PAYLOADCOMPRESSOR, compr);
|
|
buf = xstrdup(rpmio_flags);
|
|
buf[s - rpmio_flags] = '\0';
|
|
headerPutString(h, RPMTAG_PAYLOADFLAGS, buf+1);
|