From 44f2024bab29aaff4b86d2f19ee50ee74b171531 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Fri, 18 Mar 2005 09:21:25 +0000 Subject: [PATCH] adjust to use plain 'make' even for cross-compiles if using configure- style build --- tests/testcurl.pl | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tests/testcurl.pl b/tests/testcurl.pl index fbd5cfbd0..db5ca2e6c 100755 --- a/tests/testcurl.pl +++ b/tests/testcurl.pl @@ -447,9 +447,10 @@ if (grepfile("define USE_ARES", "lib/config$confsuffix.h")) { logit "build ares"; chdir "ares"; - if ($targetos ne '') { + if ($targetos && !$configurebuild) { open(F, "make -f Makefile.$targetos 2>&1 |") or die; - } else { + } + else { open(F, "make 2>&1 |") or die; } while () {