]> sourceware.org Git - automake.git/commitdiff
* lib/am/distdir.am (distcheck): '=' is not valid in DOS filenames.
authorAlexandre Duret-Lutz <adl@gnu.org>
Mon, 13 Jan 2003 14:22:24 +0000 (14:22 +0000)
committerAlexandre Duret-Lutz <adl@gnu.org>
Mon, 13 Jan 2003 14:22:24 +0000 (14:22 +0000)
Use '_build' and '_inst' instead of '=build' and '=inst'.
* tests/man2.test: Reflect change automake: check for files in
'_build' and '_inst' directories instead of '=build' and '=inst'.

ChangeLog
lib/am/distdir.am
tests/man2.test

index 937b5652690e411bc32be554dd90a0b02c0dda48..59059976221a3bfd2452186bde6eea44913647b0 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2003-01-13  Richard Dawe  <rich@phekda.freeserve.co.uk>  (tiny change)
+
+       * lib/am/distdir.am (distcheck): '=' is not valid in DOS filenames.
+       Use '_build' and '_inst' instead of '=build' and '=inst'.
+       * tests/man2.test: Reflect change automake: check for files in
+       '_build' and '_inst' directories instead of '=build' and '=inst'.
+
 2003-01-13  Alexandre Duret-Lutz  <adl@gnu.org>
 
        Use `_dirstamp' when the file-system doesn't support `.dirstamp'.
index 67f3f59a667449a62f56079b23bb02c56efdc8a5..bc503147d128451fb0fc61c3611b379d9d5a2514 100644 (file)
@@ -299,17 +299,17 @@ distcheck: dist
 ## this case.  However, make the top-level directory writable so we
 ## can make our new subdirs.
        chmod -R a-w $(distdir); chmod a+w $(distdir)
-       mkdir $(distdir)/=build
-       mkdir $(distdir)/=inst
+       mkdir $(distdir)/_build
+       mkdir $(distdir)/_inst
 ## Undo the write access.
        chmod a-w $(distdir)
-       dc_install_base=`$(am__cd) $(distdir)/=inst && pwd` \
+       dc_install_base=`$(am__cd) $(distdir)/_inst && pwd` \
 ## We will attemp a DESTDIR install in $dc_destdir.  We don't
 ## create this directory under $dc_install_base, because it would
 ## create very long directory names.
          && dc_destdir="$${TMPDIR-/tmp}/am-dc-$$$$/" \
 ?DISTCHECK-HOOK?         && $(MAKE) $(AM_MAKEFLAGS) distcheck-hook \
-         && cd $(distdir)/=build \
+         && cd $(distdir)/_build \
          && ../configure --srcdir=.. --prefix="$$dc_install_base" \
 ?GETTEXT?          --with-included-gettext \
 ## Additional flags for configure.  Keep this last in the configure
index eba1bee633c776b1098b44aa6733a6b43f273dd2..e1109840d81bc9877150713413bc85e397e740ba 100755 (executable)
@@ -42,14 +42,14 @@ $AUTOMAKE
 
 # Let's play with $DESTDIR too, it shouldn't hurt.
 ./configure --prefix=''
-DESTDIR="`pwd`/=inst" $MAKE -e install
+DESTDIR="`pwd`/_inst" $MAKE -e install
 
-test -f ./=inst/man/man2/foo.2
-test -f ./=inst/man/man4/foo.4
-test -f ./=inst/man/man4/bar.4
+test -f ./_inst/man/man2/foo.2
+test -f ./_inst/man/man4/foo.4
+test -f ./_inst/man/man4/bar.4
 
-DESTDIR="`pwd`/=inst" $MAKE -e uninstall
+DESTDIR="`pwd`/_inst" $MAKE -e uninstall
 
-test ! -f ./=inst/man/man2/foo.2
-test ! -f ./=inst/man/man4/foo.4
-test ! -f ./=inst/man/man4/bar.4
+test ! -f ./_inst/man/man2/foo.2
+test ! -f ./_inst/man/man4/foo.4
+test ! -f ./_inst/man/man4/bar.4
This page took 0.079057 seconds and 5 git commands to generate.