]> sourceware.org Git - automake.git/commitdiff
* tests/target-cflags.test: Don't use subshell to configure in
authorPavel Roskin <proski@gnu.org>
Thu, 22 Feb 2001 18:49:50 +0000 (18:49 +0000)
committerPavel Roskin <proski@gnu.org>
Thu, 22 Feb 2001 18:49:50 +0000 (18:49 +0000)
subdirectory. Typo fix - run `./foo', not `/foo'.

ChangeLog
tests/target-cflags.test

index 03b248ec1459ba4ef46567a879046468d28c4667..91397347b6f238d0a20bccf0251ca31dde520ac5 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2001-02-22  Pavel Roskin  <proski@gnu.org>
+
+       * tests/target-cflags.test: Don't use subshell to configure in
+       subdirectory. Typo fix - run `./foo', not `/foo'.
+
 2001-02-22  Akim Demaille  <akim@epita.fr>
 
        * automake.in: Formatting and mying changes.
index 208109dee108ea6f8163594bf8d5ce510ca8bb28..8f4d672675d065cd4fcbc020e902108f41638453 100755 (executable)
@@ -52,13 +52,14 @@ $ACLOCAL
 $AUTOCONF
 $AUTOMAKE -a
 mkdir obj
-(
-    cd obj
-    ../configure
-    $MAKE
-    /foo
-    ./bar
-)
+
+cd obj
+../configure
+$MAKE
+./foo
+./bar
+cd ..
+
 ./configure
 $MAKE
 ./foo
This page took 0.035898 seconds and 5 git commands to generate.