summaryrefslogtreecommitdiff
path: root/build
diff options
context:
space:
mode:
authorjbj <devnull@localhost>2002-12-28 00:24:14 +0000
committerjbj <devnull@localhost>2002-12-28 00:24:14 +0000
commit2119e50b90f0b5f145778e5325188d1d4487378a (patch)
tree59a95722eedae5d4b1821e01032376dcc8b03e2f /build
parent5e61b7cae81967b9bcc0700755336e5e42207b5e (diff)
downloadlibrpm-tizen-2119e50b90f0b5f145778e5325188d1d4487378a.tar.gz
librpm-tizen-2119e50b90f0b5f145778e5325188d1d4487378a.tar.bz2
librpm-tizen-2119e50b90f0b5f145778e5325188d1d4487378a.zip
- fix builddir relative inclusion, add %%pubkeys to rpm header.
- fix: package relocations were broken (#75057). CVS patchset: 5978 CVS date: 2002/12/28 00:24:14
Diffstat (limited to 'build')
-rw-r--r--build/files.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/build/files.c b/build/files.c
index ad38b7a2b..2d5021cfc 100644
--- a/build/files.c
+++ b/build/files.c
@@ -1742,7 +1742,7 @@ static int processPubkeyFile(Package pkg, FileList fl, const char * fileURL)
const char * apkt = NULL;
const unsigned char * pkt = NULL;
ssize_t pktlen = 0;
- int absolute = 1;
+ int absolute = 0;
int rc = 1;
int xx;
@@ -1753,7 +1753,6 @@ static int processPubkeyFile(Package pkg, FileList fl, const char * fileURL)
} else
fn = rpmGenPath(buildURL, NULL, fn);
-fprintf(stderr, "*** fn %s\n", fn);
if ((rc = pgpReadPkts(fn, &pkt, &pktlen)) <= 0) {
rpmError(RPMERR_BADSPEC, _("%s: public key read failed.\n"), fn);
goto exit;