From: Scott James Remnant Date: Fri, 23 Jan 2004 06:06:27 +0000 (+0000) Subject: * libtoolize.in: Fix libtoolize so the cd command run when X-Git-Tag: release-1-5-2~8 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=899a2a04ad1eeac1643e0aae21c6a06df64b765f;p=thirdparty%2Flibtool.git * libtoolize.in: Fix libtoolize so the cd command run when AC_CONFIG_AUX_DIR is used is shown when --dry-run is given. (Debian Bug #153699) --- diff --git a/ChangeLog b/ChangeLog index dfeef73ff..71b2fc951 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2004-01-23 Scott James Remnant + + * libtoolize.in: Fix libtoolize so the cd command run when + AC_CONFIG_AUX_DIR is used is shown when --dry-run is given. + (Debian Bug #153699) + 2004-01-23 Scott James Remnant * ltmain.in: include newline in "sensible default" for IFS. (Debian Bug #98492 and #95447) diff --git a/libtoolize.in b/libtoolize.in index 0896b2ef8..65f987fdb 100644 --- a/libtoolize.in +++ b/libtoolize.in @@ -330,6 +330,7 @@ fi # Change to the auxiliary directory. if test "$auxdir" != .; then test -z "$automake" && echo "Putting files in AC_CONFIG_AUX_DIR, \`$auxdir'." + test "x$dry_run" = x"yes" && echo "cd $auxdir" cd $auxdir || exit 1 fi