]> git.ipfire.org Git - thirdparty/libtool.git/commitdiff
* libtoolize.in: Fix libtoolize so the cd command run when
authorScott James Remnant <scott@netsplit.com>
Fri, 23 Jan 2004 06:06:27 +0000 (06:06 +0000)
committerScott James Remnant <scott@netsplit.com>
Fri, 23 Jan 2004 06:06:27 +0000 (06:06 +0000)
AC_CONFIG_AUX_DIR is used is shown when --dry-run is given.
(Debian Bug #153699)

ChangeLog
libtoolize.in

index dfeef73ffb777c58c5fdae032b7dce9a4186a792..71b2fc951673611b568938d2e695f1aa0a6ab3d9 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2004-01-23  Scott James Remnant  <scott@netsplit.com>
+
+       * 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  <scott@netsplit.com>
        * ltmain.in: include newline in "sensible default" for IFS.
        (Debian Bug #98492 and #95447)
index 0896b2ef8ce993ff80db17f21515cb3a018b9f6b..65f987fdb4419d123150ec0d70af2fb580219861 100644 (file)
@@ -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