]> sourceware.org Git - automake.git/commitdiff
* m4/init.m4: Execute cygpath in a sub-shell.
authorAlexandre Duret-Lutz <adl@gnu.org>
Mon, 9 Sep 2002 08:27:18 +0000 (08:27 +0000)
committerAlexandre Duret-Lutz <adl@gnu.org>
Mon, 9 Sep 2002 08:27:18 +0000 (08:27 +0000)
ChangeLog
aclocal.m4
m4/init.m4
tests/Makefile.in

index 7f5c6f4416953d4b6abec9130eb014f269b71220..1824b80a50161c918beacb5c41495af57f3954f9 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2002-09-09  Alexandre Duret-Lutz  <duret_g@epita.fr>
+
+       * m4/init.m4: Execute cygpath in a sub-shell.
+
 2002-09-08  Alexandre Duret-Lutz  <duret_g@epita.fr>
 
        * automake.in (macro_define): Warn about `:=' assignments.
index ea4e123de9ae75e994bf07b73c3d265f3597a94f..c456519facf8f7ea5a7e5bcc761fd23a57a61af3 100644 (file)
@@ -71,7 +71,7 @@ fi
 
 # test whether we have cygpath
 if test -z "$CYGPATH_W"; then
-  if cygpath --version >/dev/null 2>/dev/null; then
+  if (cygpath --version) >/dev/null 2>/dev/null; then
     CYGPATH_W='cygpath -w'
   else
     CYGPATH_W=echo
index 2dedfe309003680e2025c18f0e513e4e17143a3f..1ceb833382e12066c691d58b6a78a774d10466cb 100644 (file)
@@ -58,7 +58,7 @@ fi
 
 # test whether we have cygpath
 if test -z "$CYGPATH_W"; then
-  if cygpath --version >/dev/null 2>/dev/null; then
+  if (cygpath --version) >/dev/null 2>/dev/null; then
     CYGPATH_W='cygpath -w'
   else
     CYGPATH_W=echo
index 81a8eda0cf6da97093b9ad1eeab9e62977b74f07..67b3943aaae0181899f5b3ca2352f21f60637567 100644 (file)
@@ -521,7 +521,7 @@ subdir = tests
 mkinstalldirs = $(SHELL) $(top_srcdir)/lib/mkinstalldirs
 CONFIG_CLEAN_FILES = defs
 DIST_SOURCES =
-DIST_COMMON = Makefile.am Makefile.in configure.in defs.in
+DIST_COMMON = Makefile.am Makefile.in defs.in
 all: $(BUILT_SOURCES)
        $(MAKE) $(AM_MAKEFLAGS) all-am
 
This page took 0.037307 seconds and 5 git commands to generate.