| Revision: | 1.1 |
| Committed: | Sat Mar 1 15:53:02 2003 UTC (22 years, 11 months ago) by pcg |
| Branch: | MAIN |
| CVS Tags: | rel-1_9, rel-1_8, rel-2_01, poll-based-iom, rel-3_0, VPE_0_9, VPE_1_2, rel-2_2, rel-2_0, VPE_1_4, VPE_1_6, rel-1_7, VPE-1_6_1, rel-2_21, rel-2_22, rel-2_25, VPE_1_0, HEAD |
| Log Message: | *** empty log message *** |
| # | User | Rev | Content |
|---|---|---|---|
| 1 | pcg | 1.1 | # aclocal-include.m4 |
| 2 | # | ||
| 3 | # This macro adds the name macrodir to the set of directories | ||
| 4 | # that `aclocal' searches for macros. | ||
| 5 | |||
| 6 | # serial 1 | ||
| 7 | |||
| 8 | dnl AM_ACLOCAL_INCLUDE(macrodir) | ||
| 9 | AC_DEFUN([AM_ACLOCAL_INCLUDE], | ||
| 10 | [ | ||
| 11 | test -n "$ACLOCAL_FLAGS" && ACLOCAL="$ACLOCAL $ACLOCAL_FLAGS" | ||
| 12 | |||
| 13 | for k in $1 ; do ACLOCAL="$ACLOCAL -I $k" ; done | ||
| 14 | ]) |