summaryrefslogtreecommitdiff
path: root/Configure
diff options
context:
space:
mode:
authorAndy Dougherty <doughera@lafayette.edu>2009-07-01 10:28:47 -0400
committerAndy Dougherty <doughera@lafayette.edu>2009-07-01 10:28:47 -0400
commit9cf72a4efbbd7d24d3d9d7f5c9d5be6e4ef4297a (patch)
treec3f61dc6aeb774dc36e48b2b91d5c1e56aefd3ee /Configure
parenteb8d423fedc51cab74c8f3c999e4055d7b90f515 (diff)
downloadperl-9cf72a4efbbd7d24d3d9d7f5c9d5be6e4ef4297a.tar.gz
[Configure]: avoid leaking Win32CORE.c into output of extension probing.
Diffstat (limited to 'Configure')
-rwxr-xr-xConfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/Configure b/Configure
index 2d6f7de054..5dbd2f37fd 100755
--- 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";