* Makefile.am (@DIST_MAKEFILE_LIST@): `$' must be doubled

This commit is contained in:
Alexandre Oliva 1999-01-13 16:08:28 +00:00 committed by Alexandre Oliva
parent 47ff66f5e0
commit 3f2c102add
2 changed files with 4 additions and 2 deletions

View File

@ -1,5 +1,7 @@
1999-01-13 Alexandre Oliva <oliva@dcc.unicamp.br>
* Makefile.am (@DIST_MAKEFILE_LIST@): `$' must be doubled
* configure.in (AC_CONFIG_DIRS): configure only libltdl, and then,
only if --enable-ltdl-install
(CONF_SUBDIRS): list directories that are configured on demand,
@ -20,7 +22,7 @@
configure.
On-demand configuration of subdirs at distribution time was
suggested by Gary V. Vaughan <gvaughan@oranda.demon.co.uk>
* libtool.m4, ltconfig.in (NM): search for NM in PATH before
/usr/ccs/bin, /usr/ucb and /bin. However, if the found one isn't
BSD-compat keep searching. If no BSD-compat is found, use the

View File

@ -72,7 +72,7 @@ all-local check-local: $(ACINCLUDE_M4_LIST) libtool
.PHONY: configure-subdirs
configure-subdirs distdir: $(DIST_MAKEFILE_LIST)
@DIST_MAKEFILE_LIST@:
dir=`echo $@ | sed 's,^[^/]*$,.,;s,/[^/]*$,,'`; \
dir=`echo $@ | sed 's,^[^/]*$$,.,;s,/[^/]*$$,,'`; \
test -d $$dir || mkdir $$dir || exit 1; \
(cd $$dir && $(srcdir)/$$dir/configure) || exit 1