From 8ed40b83ec19aab146a3df701c83066c8788a7a8 Mon Sep 17 00:00:00 2001 From: Richard Levitte Date: Wed, 27 Jan 2016 19:03:13 +0100 Subject: [PATCH 1/1] Fix check of what makedepprog should be MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit A mistake was made and the setting of this config variable got reverted to an older behavior. This restores the latest. Reviewed-by: Emilia Käsper --- Configure | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/Configure b/Configure index feb4cc9a60..e52eecd522 100755 --- a/Configure +++ b/Configure @@ -1142,10 +1142,11 @@ if (!$no_asm) { } } -$config{makedepprog} = "makedepend"; -if ($target{cc} eq "gcc" || ($target{cc} eq 'cc' && $config{target} =~ /darwin/)) { - $config{makedepprog} = $target{cc}; -} +my $ecc = $target{cc}; +$ecc = "clang" if `$target{cc} --version 2>&1` =~ /clang/; + +$config{makedepprog} = + $ecc eq "gcc" || $ecc eq "clang" ? $target{cc} : "makedepend"; $config{depflags} =~ s/^\s*//; @@ -1216,9 +1217,6 @@ if (defined($config{api})) { $config{cflags} .= " $apiflag"; } -my $ecc = $target{cc}; -$ecc = "clang" if `$target{cc} --version 2>&1` =~ /clang/; - if ($strict_warnings) { my $wopt; -- 2.34.1