File: aclocal-include.m4

package info (click to toggle)
bonobo-python 0.2.0-6
  • links: PTS
  • area: main
  • in suites: woody
  • size: 1,752 kB
  • ctags: 1,471
  • sloc: ansic: 7,822; sh: 7,124; python: 2,394; makefile: 142
file content (16 lines) | stat: -rw-r--r-- 372 bytes parent folder | download | duplicates (307)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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
])