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~266 X-Git-Url: https://sourceware.org/git/?a=commitdiff_plain;h=54082f88f3892f5421b99acba6f80dd82a7d14ab;p=automake.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 03b248ec..91397347 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 208109de..8f4d6726 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