summaryrefslogtreecommitdiff
path: root/macros/aclocal-include.m4
diff options
context:
space:
mode:
authorDan Winship <danw@src.gnome.org>2002-03-05 16:57:29 +0000
committerDan Winship <danw@src.gnome.org>2002-03-05 16:57:29 +0000
commitbef442d6ae99db3e3a4e1c2f026c97cd813b41d6 (patch)
tree3714dcade0783d6bb1e8ce9e707c2e783b9bb4b4 /macros/aclocal-include.m4
parentfa9f9f29a7a287c1e8a4a8f00cbba0389264577e (diff)
downloadshared-mime-info-bef442d6ae99db3e3a4e1c2f026c97cd813b41d6.tar.gz
I'm not dead yet!
svn path=/trunk/; revision=2345
Diffstat (limited to 'macros/aclocal-include.m4')
-rw-r--r--macros/aclocal-include.m416
1 files changed, 16 insertions, 0 deletions
diff --git a/macros/aclocal-include.m4 b/macros/aclocal-include.m4
new file mode 100644
index 00000000..43f9dbc4
--- /dev/null
+++ b/macros/aclocal-include.m4
@@ -0,0 +1,16 @@
+# aclocal-include.m4
+#
+# This macro adds the name macrodir to the set of directories
+# that `aclocal' searches for macros.
+
+# serial 1
+
+dnl AM_ACLOCAL_INCLUDE(macrodir)
+AC_DEFUN([AM_ACLOCAL_INCLUDE],
+[
+ AM_CONDITIONAL(INSIDE_GNOME_COMMON, false)
+
+ test -n "$ACLOCAL_FLAGS" && ACLOCAL="$ACLOCAL $ACLOCAL_FLAGS"
+
+ for k in $1 ; do ACLOCAL="$ACLOCAL -I $k" ; done
+])