diff options
author | David Shaw <[email protected]> | 2003-02-06 21:23:02 +0000 |
---|---|---|
committer | David Shaw <[email protected]> | 2003-02-06 21:23:02 +0000 |
commit | e2963095c0d04be40a335a2a07ed6732d786ac1b (patch) | |
tree | a59ecb607ca3a3ddc62b8e40dbc75a273288c984 | |
parent | * configure.ac: Do not set GNUPG_LIBEXECDIR in ./configure, so that (diff) | |
download | gnupg-e2963095c0d04be40a335a2a07ed6732d786ac1b.tar.gz gnupg-e2963095c0d04be40a335a2a07ed6732d786ac1b.zip |
* Makefile.am: Pass GNUPG_LIBEXECDIR as part of CFLAGS so it can be easily
overridden at make time.
-rw-r--r-- | g10/ChangeLog | 5 | ||||
-rw-r--r-- | g10/Makefile.am | 4 |
2 files changed, 8 insertions, 1 deletions
diff --git a/g10/ChangeLog b/g10/ChangeLog index 65e074f5a..c542f767b 100644 --- a/g10/ChangeLog +++ b/g10/ChangeLog @@ -1,3 +1,8 @@ +2003-02-06 David Shaw <[email protected]> + + * Makefile.am: Pass GNUPG_LIBEXECDIR as part of CFLAGS so it can + be easily overridden at make time. + 2003-02-05 David Shaw <[email protected]> * g10.c (print_hex, print_mds): Print long hash strings a lot diff --git a/g10/Makefile.am b/g10/Makefile.am index 13ac50b6d..5bb333f7a 100644 --- a/g10/Makefile.am +++ b/g10/Makefile.am @@ -22,7 +22,9 @@ INCLUDES = -I.. -I$(top_srcdir)/include -I$(top_srcdir)/intl EXTRA_DIST = options.skel # it seems that we can't use this with automake 1.5 #OMIT_DEPENDENCIES = zlib.h zconf.h -LDFLAGS = @LDFLAGS@ +LDFLAGS = @LDFLAGS@ +libexecdir = @libexecdir@/gnupg +CFLAGS = @CFLAGS@ -DGNUPG_LIBEXECDIR="\"$(libexecdir)\"" needed_libs = ../cipher/libcipher.a ../mpi/libmpi.a ../util/libutil.a #noinst_PROGRAMS = gpgd |