Commit b730b03f authored by Andy Polyakov's avatar Andy Polyakov
Browse files

Configure: suppress $multilib with non-system $prefix.

PR: 2307
parent 1dc02bba
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -1098,6 +1098,12 @@ my $ar = $ENV{'AR'} || "ar";
my $arflags = $fields[$idx_arflags];
my $multilib = $fields[$idx_multilib];

# if $prefix/lib$multilib is not an existing directory, then
# assume that it's not searched by linker automatically, in
# which case adding $multilib suffix causes more grief than
# we're ready to tolerate, so don't...
$multilib="" if !-d "$prefix/lib$multilib";

$libdir="lib$multilib" if $libdir eq "";

$cflags = "$cflags$exp_cflags";