Skip to content
Snippets Groups Projects
Commit 44f2024b authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

adjust to use plain 'make' even for cross-compiles if using configure-

style build
parent 410942e9
No related branches found
No related tags found
No related merge requests found
......@@ -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 (<F>) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment