mirror of
https://git.savannah.nongnu.org/git/exosip.git
synced 2026-01-12 00:19:10 +08:00
git-svn-id: svn://svn.savannah.nongnu.org/exosip/trunk/exosip@54 b4fb6cef-10e1-4022-a11b-4669fa468031
17 lines
367 B
Plaintext
17 lines
367 B
Plaintext
# 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
|
|
])
|