mirror of
git://git.savannah.gnu.org/libtool.git
synced 2024-11-27 06:09:57 +08:00
* Makefile.am, HACKING: Use lt__cd throughout.
This commit is contained in:
parent
94cc58be06
commit
93cd550c92
@ -1,3 +1,7 @@
|
|||||||
|
2005-04-22 Ralf Wildenhues <Ralf.Wildenhues@gmx.de> (tiny change)
|
||||||
|
|
||||||
|
* Makefile.am, HACKING: Use lt__cd throughout.
|
||||||
|
|
||||||
2005-04-22 Gary V. Vaughan <gary@gnu.org>
|
2005-04-22 Gary V. Vaughan <gary@gnu.org>
|
||||||
|
|
||||||
The FSF are moving offices today. Changed their contact address
|
The FSF are moving offices today. Changed their contact address
|
||||||
|
2
HACKING
2
HACKING
@ -186,7 +186,7 @@ yyyy-mm-dd Name of Author <email@address> (tiny change)
|
|||||||
|
|
||||||
* Never use basename or dirname. Instead use sed.
|
* Never use basename or dirname. Instead use sed.
|
||||||
|
|
||||||
* Do not use `cd' within back-quotes, use `$(am__cd)' instead.
|
* Do not use `cd' within back-quotes, use `$(lt__cd)' instead.
|
||||||
Otherwise the directory name may be printed, depending on CDPATH.
|
Otherwise the directory name may be printed, depending on CDPATH.
|
||||||
|
|
||||||
* In general, if a loop is required, it should be silent. Then the body
|
* In general, if a loop is required, it should be silent. Then the body
|
||||||
|
@ -29,6 +29,9 @@ SUBDIRS = $(BUILD_SUBDIRS)
|
|||||||
DIST_SUBDIRS = $(BUILD_SUBDIRS)
|
DIST_SUBDIRS = $(BUILD_SUBDIRS)
|
||||||
EXTRA_DIST =
|
EXTRA_DIST =
|
||||||
|
|
||||||
|
# Using `cd' in backquotes may print the directory name, use this instead:
|
||||||
|
lt__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
|
||||||
|
|
||||||
|
|
||||||
## ---------------- ##
|
## ---------------- ##
|
||||||
## Libtool scripts. ##
|
## Libtool scripts. ##
|
||||||
@ -66,7 +69,7 @@ configure-subdirs distdir: $(DIST_MAKEFILE_LIST)
|
|||||||
@DIST_MAKEFILE_LIST@:
|
@DIST_MAKEFILE_LIST@:
|
||||||
dir=`echo $@ | sed 's,^[^/]*$$,.,;s,/[^/]*$$,,'`; \
|
dir=`echo $@ | sed 's,^[^/]*$$,.,;s,/[^/]*$$,,'`; \
|
||||||
test -d $$dir || mkdir $$dir || exit 1; \
|
test -d $$dir || mkdir $$dir || exit 1; \
|
||||||
abs_srcdir=`cd $(srcdir) && pwd`; \
|
abs_srcdir=`$(lt__cd) $(srcdir) && pwd`; \
|
||||||
(cd $$dir && $$abs_srcdir/$$dir/configure) || exit 1
|
(cd $$dir && $$abs_srcdir/$$dir/configure) || exit 1
|
||||||
|
|
||||||
|
|
||||||
@ -340,7 +343,6 @@ tests/atconfig: config.status
|
|||||||
$(SHELL) ./config.status tests/atconfig
|
$(SHELL) ./config.status tests/atconfig
|
||||||
DISTCLEANFILES += tests/atconfig
|
DISTCLEANFILES += tests/atconfig
|
||||||
|
|
||||||
lt__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
|
|
||||||
CD_TESTDIR = abs_srcdir=`$(lt__cd) $(srcdir) && pwd`; cd tests
|
CD_TESTDIR = abs_srcdir=`$(lt__cd) $(srcdir) && pwd`; cd tests
|
||||||
|
|
||||||
# Hook the test suite into the check rule
|
# Hook the test suite into the check rule
|
||||||
|
Loading…
Reference in New Issue
Block a user