diff options
author | Dan Winship <danw@src.gnome.org> | 2000-08-03 06:26:45 +0800 |
---|---|---|
committer | Dan Winship <danw@src.gnome.org> | 2000-08-03 06:26:45 +0800 |
commit | a0281d1b1860f650ba2293e422cbc9ec7ee2012b (patch) | |
tree | bbeff35e0957b12fd53be52f87c7ddc1c7377108 /macros/aclocal-include.m4 | |
parent | 83cbc862e6981bd06b406a0ae01e50d15a3502e7 (diff) | |
download | gsoc2013-evolution-a0281d1b1860f650ba2293e422cbc9ec7ee2012b.tar gsoc2013-evolution-a0281d1b1860f650ba2293e422cbc9ec7ee2012b.tar.gz gsoc2013-evolution-a0281d1b1860f650ba2293e422cbc9ec7ee2012b.tar.bz2 gsoc2013-evolution-a0281d1b1860f650ba2293e422cbc9ec7ee2012b.tar.lz gsoc2013-evolution-a0281d1b1860f650ba2293e422cbc9ec7ee2012b.tar.xz gsoc2013-evolution-a0281d1b1860f650ba2293e422cbc9ec7ee2012b.tar.zst gsoc2013-evolution-a0281d1b1860f650ba2293e422cbc9ec7ee2012b.zip |
Fix "cvs rm -rf" lossage.
svn path=/trunk/; revision=4480
Diffstat (limited to 'macros/aclocal-include.m4')
-rw-r--r-- | macros/aclocal-include.m4 | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/macros/aclocal-include.m4 b/macros/aclocal-include.m4 new file mode 100644 index 0000000000..abf6533fe4 --- /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, test x = y) + + test -n "$ACLOCAL_FLAGS" && ACLOCAL="$ACLOCAL $ACLOCAL_FLAGS" + + for k in $1 ; do ACLOCAL="$ACLOCAL -I $k" ; done +]) |