diff options
author | Daniel Stenberg <daniel@haxx.se> | 2004-10-10 07:51:25 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2004-10-10 07:51:25 +0000 |
commit | 1eddbb1b4728b67290f065fe6e8b772365735349 (patch) | |
tree | e73572e1fed66a4bde5d6b37e1a63c33789c7975 | |
parent | bb8591cf541e937c8386ebcb742697f045bc0edb (diff) |
attempt to make the configure output appear in the build log when it runs
on my solaris 2.7 box too (currently unknown perl version)
-rwxr-xr-x | tests/testcurl.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/testcurl.pl b/tests/testcurl.pl index bd1b8c025..2aa162b8d 100755 --- a/tests/testcurl.pl +++ b/tests/testcurl.pl @@ -352,7 +352,7 @@ chdir "$pwd/$build"; if ($gnulikebuild) { # run configure script - system("../$CURLDIR/configure $confopts 2>&1"); + print `../$CURLDIR/configure $confopts 2>&1`; if (-f "lib/Makefile") { logit "configure seems to have finished fine"; |