Change 32797 by [EMAIL PROTECTED] on 2008/01/01 20:34:49
Missing test, adding $ to the other test's
Affected files ...
... //depot/perl/Configure#675 edit
Differences ...
==== //depot/perl/Configure#675 (xtext) ====
Index: perl/Configure
--- perl/Configure#674~32795~ 2008-01-01 12:13:56.000000000 -0800
+++ perl/Configure 2008-01-01 12:34:49.000000000 -0800
@@ -26,7 +26,7 @@
# $Id: Head.U,v 3.0.1.9 1997/02/28 15:02:09 ram Exp $
#
-# Generated on Tue Jan 1 21:12:58 CET 2008 [metaconfig 3.0 PL70]
+# Generated on Tue Jan 1 21:34:35 CET 2008 [metaconfig 3.0 PL70]
# (with additional metaconfig patches by [EMAIL PROTECTED])
cat >c1$$ <<EOF
@@ -5054,7 +5054,7 @@
echo "int main(void) { return 0; }" > gcctest.c;
if $cc -O2 $flag -o gcctest gcctest.c 2>gcctest.out && ./gcctest; then
echo "Yes, it does." 2>&1;
- if -s gcctest.out ; then
+ if $test -s gcctest.out ; then
echo "But your platform does not like it:";
cat gcctest.out;
else
@@ -5083,7 +5083,7 @@
*-g*:old) dflt="$dflt -DDEBUGGING";;
esac
case "$gccversion" in
- 2*) if test -d /etc/conf/kconfig.d &&
+ 2*) if $test -d /etc/conf/kconfig.d &&
$contains _POSIX_VERSION $usrinc/sys/unistd.h
>/dev/null 2>&1
then
# Interactive Systems (ISC) POSIX mode.
End of Patch.