summaryrefslogtreecommitdiff
path: root/Configure
diff options
context:
space:
mode:
authorH.Merijn Brand <h.m.brand@xs4all.nl>2015-07-30 10:48:51 +0200
committerH.Merijn Brand <h.m.brand@xs4all.nl>2015-07-30 10:48:51 +0200
commit7e41b9934be595ab0534b20441b5cb8b982ddb32 (patch)
treed2eb83d54951ac766231091d487f778c7ae11377 /Configure
parentf43a9012db29c140e164014d022779891ab3753b (diff)
downloadperl-7e41b9934be595ab0534b20441b5cb8b982ddb32.tar.gz
Consistently use -o a.out (spotted by Ivan Pozdeev)
Diffstat (limited to 'Configure')
-rwxr-xr-xConfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/Configure b/Configure
index 0e225425d0..4d25c90e31 100755
--- a/Configure
+++ b/Configure
@@ -8413,7 +8413,7 @@ int main() {
exit(1); /* fail */
}
EOM
- if $cc $ccflags $ldflags try.c >/dev/null 2>&1 && $run ./a.out; then
+ if $cc $ccflags $ldflags -o a.out try.c >/dev/null 2>&1 && $run ./a.out; then
bin_ELF="$define"
fi
$rm_try