summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTomislav Vujec <tvujec@carnet.hr>1999-03-10 23:16:04 +0000
committerRaja R Harinath <harinath@src.gnome.org>1999-03-10 23:16:04 +0000
commitcc62717e214edcebd894ac83b67b82686357189c (patch)
tree0085ff05a0e9b07e697cd74005bbd3ae2394ff4e
parent3f003e7c7e4c5d8bd9ff4e85c1c2e3de6d95681f (diff)
downloadshared-mime-info-cc62717e214edcebd894ac83b67b82686357189c.tar.gz
Applied this change:
1999-03-10 Tomislav Vujec <tvujec@carnet.hr> * aclocal-include.m4 (AM_ACLOCAL_INCLUDE): Add ACLOCAL_FLAGS in ACLOCAL. This allows maintainer rules to work if any of the macros change. svn path=/trunk/; revision=700
-rw-r--r--macros/ChangeLog13
-rw-r--r--macros/aclocal-include.m42
2 files changed, 12 insertions, 3 deletions
diff --git a/macros/ChangeLog b/macros/ChangeLog
index 07e98f06..d2243e59 100644
--- a/macros/ChangeLog
+++ b/macros/ChangeLog
@@ -1,8 +1,15 @@
1999-03-10 Tomislav Vujec <tvujec@carnet.hr>
- * gnome.m4 (GNOME_INIT_HOOK): Wrapped position parameter in testing
- for additional inits. It gets expanded while generating configure,
- resulting in an empty parameter list - syntax error in for statement.
+ * aclocal-include.m4 (AM_ACLOCAL_INCLUDE): Add ACLOCAL_FLAGS in
+ ACLOCAL. This allows maintainer rules to work if any of the macros
+ change.
+
+1999-03-10 Tomislav Vujec <tvujec@carnet.hr>
+
+ * gnome.m4 (GNOME_INIT_HOOK): Wrapped position parameter in
+ testing for additional inits. It gets expanded while generating
+ configure, resulting in an empty parameter list - syntax error in
+ for statement.
1999-03-09 Raja R Harinath <harinath@cs.umn.edu>
diff --git a/macros/aclocal-include.m4 b/macros/aclocal-include.m4
index dba50e8d..abf6533f 100644
--- a/macros/aclocal-include.m4
+++ b/macros/aclocal-include.m4
@@ -10,5 +10,7 @@ AC_DEFUN([AM_ACLOCAL_INCLUDE],
[
AM_CONDITIONAL(INSIDE_GNOME_COMMON, test x = y)
+ test -n "$ACLOCAL_FLAGS" && ACLOCAL="$ACLOCAL $ACLOCAL_FLAGS"
+
for k in $1 ; do ACLOCAL="$ACLOCAL -I $k" ; done
])