diff options
author | David Shaw <[email protected]> | 2001-12-20 16:23:55 +0000 |
---|---|---|
committer | David Shaw <[email protected]> | 2001-12-20 16:23:55 +0000 |
commit | c53d735b1297067aa6ad39089092be77eb5b02fd (patch) | |
tree | 628585faf7f65c4dc001ff1056cad23354f2d818 | |
parent | Replace mkdtemp if the platform doesn't have it (diff) | |
download | gnupg-c53d735b1297067aa6ad39089092be77eb5b02fd.tar.gz gnupg-c53d735b1297067aa6ad39089092be77eb5b02fd.zip |
Only gpg (not gpgv) needs mkdtemp
-rw-r--r-- | g10/Makefile.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/g10/Makefile.am b/g10/Makefile.am index 7251cf645..ac0588ce0 100644 --- a/g10/Makefile.am +++ b/g10/Makefile.am @@ -104,9 +104,9 @@ gpgv_SOURCES = gpgv.c \ # ks-db.h \ # $(common_source) - LDADD = $(needed_libs) @ZLIBS@ @INTLLIBS@ - +# gpg gets LIBOBJS to add in mkdtemp if the platform doesn't have it +gpg_LDADD = @LIBOBJS@ $(LDADD) $(PROGRAMS): $(needed_libs) |