From 54082f88f3892f5421b99acba6f80dd82a7d14ab Mon Sep 17 00:00:00 2001 From: Pavel Roskin Date: Thu, 22 Feb 2001 18:49:50 +0000 Subject: [PATCH] * tests/target-cflags.test: Don't use subshell to configure in subdirectory. Typo fix - run `./foo', not `/foo'. --- ChangeLog | 5 +++++ tests/target-cflags.test | 15 ++++++++------- 2 files changed, 13 insertions(+), 7 deletions(-) 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 -- 2.43.5