From: Pavel Roskin Date: Thu, 22 Feb 2001 18:49:50 +0000 (+0000) Subject: * tests/target-cflags.test: Don't use subshell to configure in X-Git-Tag: handle-languages~263 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bc0292f1b126c051e242a8b9d1dbc15fe3eff532;p=thirdparty%2Fautomake.git * tests/target-cflags.test: Don't use subshell to configure in subdirectory. Typo fix - run `./foo', not `/foo'. --- diff --git a/ChangeLog b/ChangeLog index 03b248ec1..91397347b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2001-02-22 Pavel Roskin + + * tests/target-cflags.test: Don't use subshell to configure in + subdirectory. Typo fix - run `./foo', not `/foo'. + 2001-02-22 Akim Demaille * automake.in: Formatting and mying changes. diff --git a/tests/target-cflags.test b/tests/target-cflags.test index 208109dee..8f4d67267 100755 --- a/tests/target-cflags.test +++ b/tests/target-cflags.test @@ -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