diff options
author | H.Merijn Brand <h.m.brand@xs4all.nl> | 2015-07-30 10:48:51 +0200 |
---|---|---|
committer | H.Merijn Brand <h.m.brand@xs4all.nl> | 2015-07-30 10:48:51 +0200 |
commit | 7e41b9934be595ab0534b20441b5cb8b982ddb32 (patch) | |
tree | d2eb83d54951ac766231091d487f778c7ae11377 /Configure | |
parent | f43a9012db29c140e164014d022779891ab3753b (diff) | |
download | perl-7e41b9934be595ab0534b20441b5cb8b982ddb32.tar.gz |
Consistently use -o a.out (spotted by Ivan Pozdeev)
Diffstat (limited to 'Configure')
-rwxr-xr-x | Configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |