diff options
author | jbj <devnull@localhost> | 1999-01-27 15:40:06 +0000 |
---|---|---|
committer | jbj <devnull@localhost> | 1999-01-27 15:40:06 +0000 |
commit | 291f407baa5f6bbc5d35386ec0a1a88c18d32f3b (patch) | |
tree | d9df48f91de8f16f0b997fde6644371e0be064ec /build.c | |
parent | 1330d5fc27b289568764ac294b32437246eb66ed (diff) | |
download | rpm-291f407baa5f6bbc5d35386ec0a1a88c18d32f3b.tar.gz rpm-291f407baa5f6bbc5d35386ec0a1a88c18d32f3b.tar.bz2 rpm-291f407baa5f6bbc5d35386ec0a1a88c18d32f3b.zip |
Needed trailing / when expanding specdir.
CVS patchset: 2766
CVS date: 1999/01/27 15:40:06
Diffstat (limited to 'build.c')
-rw-r--r-- | build.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -35,7 +35,7 @@ static int buildForTarget(const char *arg, int buildAmount, const char *passPhra { char tfn[64]; strcpy(tfn, "rpm-spec.XXXXXX"); - tmpSpecFile = rpmGetPath("%{_specdir}", mktemp(tfn), NULL); + tmpSpecFile = rpmGetPath("%{_specdir}/", mktemp(tfn), NULL); } cmd = alloca(strlen(arg) + 50 + strlen(tmpSpecFile)); |