You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
372 B
17 lines
372 B
15 years ago
|
# 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
|
||
|
])
|