aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOwen Taylor <otaylor@gtk.org>1998-04-25 04:48:37 +0800
committerOwen Taylor <otaylor@src.gnome.org>1998-04-25 04:48:37 +0800
commitce6e9cd00e965c92debe331b7c762b18674bbc85 (patch)
tree703486e6f38af6763a3836f070fcf87a551afecf
parent2c7418345ced904d282ec3a70e98c81053f72806 (diff)
downloadgsoc2013-evolution-ce6e9cd00e965c92debe331b7c762b18674bbc85.tar
gsoc2013-evolution-ce6e9cd00e965c92debe331b7c762b18674bbc85.tar.gz
gsoc2013-evolution-ce6e9cd00e965c92debe331b7c762b18674bbc85.tar.bz2
gsoc2013-evolution-ce6e9cd00e965c92debe331b7c762b18674bbc85.tar.lz
gsoc2013-evolution-ce6e9cd00e965c92debe331b7c762b18674bbc85.tar.xz
gsoc2013-evolution-ce6e9cd00e965c92debe331b7c762b18674bbc85.tar.zst
gsoc2013-evolution-ce6e9cd00e965c92debe331b7c762b18674bbc85.zip
Pass the results of the environment variable ACLOCAL_FLAGS to aclocal.
Fri Apr 24 16:43:38 1998 Owen Taylor <otaylor@gtk.org> * autogen.sh: Pass the results of the environment variable ACLOCAL_FLAGS to aclocal. This allows, for instance, ACLOCAL_FLAGS="-I /home/owen/share/aclocal/" autogen.sh svn path=/trunk/; revision=192
-rw-r--r--macros/ChangeLog7
-rw-r--r--macros/autogen.sh2
2 files changed, 8 insertions, 1 deletions
diff --git a/macros/ChangeLog b/macros/ChangeLog
index 19ca9b1792..7b710b6f51 100644
--- a/macros/ChangeLog
+++ b/macros/ChangeLog
@@ -1,3 +1,10 @@
+Fri Apr 24 16:43:38 1998 Owen Taylor <otaylor@gtk.org>
+
+ * autogen.sh: Pass the results of the environment variable
+ ACLOCAL_FLAGS to aclocal. This allows, for instance,
+
+ ACLOCAL_FLAGS="-I /home/owen/share/aclocal/" autogen.sh
+
Sun Apr 19 01:35:53 EDT 1998 Gregory McLean <gregm@comstar.net>
* gnome-x-checks.m4: Updated the gtk check to check for 1.0.0
diff --git a/macros/autogen.sh b/macros/autogen.sh
index 4ece8483b7..a1530b20d6 100644
--- a/macros/autogen.sh
+++ b/macros/autogen.sh
@@ -77,7 +77,7 @@ do
## debug
test -n "$macrodirs" && echo \`aclocal\' will also look in \`$macrodirs\'
(cd $i; \
- aclocalinclude=""; \
+ aclocalinclude="$ACLOCAL_FLAGS"; \
for k in $macrodirs; do \
if test -d $k; then aclocalinclude="$aclocalinclude -I $k"; \
else echo "**Warning**: No such directory \`$k'. Ignored."; fi; \