summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2011-10-24 18:01:45 +0200
committerNicholas Clark <nick@ccl4.org>2011-10-24 18:01:45 +0200
commit9913adee522ad312f60d0f24722d0144ffb12656 (patch)
treeec67a50aac8eb8ffb25b507b9fe384c5367d3f45
parent93b2dae14541cd2bc39e2d4b1bb5f0cc2c0ef0c7 (diff)
downloadperl-9913adee522ad312f60d0f24722d0144ffb12656.tar.gz
In bisect-runner.pl, default to 'cc' not 'gcc'.
With this, bisect-runner.pl can build on Solaris (at least x86 Solaris) back to 5.000.
-rwxr-xr-xPorting/bisect-runner.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/Porting/bisect-runner.pl b/Porting/bisect-runner.pl
index bcd8e07243..6fecdd8b8d 100755
--- a/Porting/bisect-runner.pl
+++ b/Porting/bisect-runner.pl
@@ -52,8 +52,8 @@ my %defines =
(
usedevel => '',
optimize => '-g',
- cc => 'ccache gcc',
- ld => 'gcc',
+ cc => 'ccache cc',
+ ld => 'cc',
($linux64 ? (libpth => \@paths) : ()),
);