This is a live mirror of the Perl 5 development currently hosted at
https://github.com/perl/perl5
https://perl5.git.perl.org
/
perl5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(from parent 1:
eb8d423
)
[Configure]: avoid leaking Win32CORE.c into output of extension probing.
author
Andy Dougherty
<doughera@lafayette.edu>
Wed, 1 Jul 2009 14:28:47 +0000
(10:28 -0400)
committer
Andy Dougherty
<doughera@lafayette.edu>
Wed, 1 Jul 2009 14:28:47 +0000
(10:28 -0400)
Configure
patch
|
blob
|
blame
|
history
diff --git
a/Configure
b/Configure
index
2d6f7de
..
5dbd2f3
100755
(executable)
--- a/
Configure
+++ b/
Configure
@@
-21655,7
+21655,7
@@
find_extensions='
$ls -1 $xxx > $$.tmp;
if $contains "\.xs$" $$.tmp > /dev/null 2>&1; then
known_extensions="$known_extensions $this_ext";
- elif $contains "\.c$" $$.tmp; then
+ elif $contains "\.c$" $$.tmp
> /dev/null 2>&1
; then
known_extensions="$known_extensions $this_ext";
elif $test -d $xxx; then
nonxs_extensions="$nonxs_extensions $this_ext";