diff options
author | David Shaw <[email protected]> | 2004-12-21 23:44:06 +0000 |
---|---|---|
committer | David Shaw <[email protected]> | 2004-12-21 23:44:06 +0000 |
commit | ab4b98c77aeeae5bc7e79199e19ff113c015ad2d (patch) | |
tree | add63dd10a9818b35ef8affb0760d7a1b9dc030a | |
parent | As always, CVS leaves out the local directory? (diff) | |
download | gnupg-ab4b98c77aeeae5bc7e79199e19ff113c015ad2d.tar.gz gnupg-ab4b98c77aeeae5bc7e79199e19ff113c015ad2d.zip |
* autogen.sh: automake needs --add-missing for conditional CPPFLAGS build
in keyserver/Makefile.am.
Diffstat (limited to '')
-rw-r--r-- | scripts/ChangeLog | 5 | ||||
-rwxr-xr-x | scripts/autogen.sh | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/scripts/ChangeLog b/scripts/ChangeLog index 62df698b1..a5a9a3e2f 100644 --- a/scripts/ChangeLog +++ b/scripts/ChangeLog @@ -1,3 +1,8 @@ +2004-12-21 David Shaw <[email protected]> + + * autogen.sh: automake needs --add-missing for conditional + CPPFLAGS build in keyserver/Makefile.am. + 2004-11-26 Werner Koch <[email protected]> * autogen.sh (gettext_vers_num): Fix aclocal test. diff --git a/scripts/autogen.sh b/scripts/autogen.sh index 27da808a9..b75bb1819 100755 --- a/scripts/autogen.sh +++ b/scripts/autogen.sh @@ -273,8 +273,8 @@ echo "Running aclocal -I m4 ${ACLOCAL_FLAGS:+$ACLOCAL_FLAGS }..." $ACLOCAL -I m4 $ACLOCAL_FLAGS echo "Running autoheader..." $AUTOHEADER -echo "Running automake --gnu ..." -$AUTOMAKE --gnu; +echo "Running automake --gnu --add-missing..." +$AUTOMAKE --gnu --add-missing; echo "Running autoconf..." $AUTOCONF |