diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2001-06-11 22:33:00 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-06-11 22:33:00 +0000 |
commit | 4fca3945e6d50f55c1660233803e96a8edddd182 (patch) | |
tree | d7e39d873cebf14bb7949d2d86cbf71f24980e5c /Configure | |
parent | 7b826da8da02afafdc394fc5ec0ba1b0575968f1 (diff) | |
download | perl-4fca3945e6d50f55c1660233803e96a8edddd182.tar.gz |
Buglet found by Mark Bixby: "./try >&2 >/dev/null" should
be "./try 2>&1 >/dev/null".
p4raw-id: //depot/perl@10522
Diffstat (limited to 'Configure')
-rwxr-xr-x | Configure | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -20,7 +20,7 @@ # $Id: Head.U,v 3.0.1.9 1997/02/28 15:02:09 ram Exp $ # -# Generated on Sun Jun 10 05:21:37 EET DST 2001 [metaconfig 3.0 PL70] +# Generated on Tue Jun 12 02:31:11 EET DST 2001 [metaconfig 3.0 PL70] # (with additional metaconfig patches by perlbug@perl.org) cat >c1$$ <<EOF @@ -12892,8 +12892,8 @@ int main() { EOCP set try if eval $compile_ok; then - echo "(This test may dump core.)" >&4 - ./try >&2 >/dev/null + echo "(Testign for character data alignment may dump core.)" >&4 + ./try 2>&1 >/dev/null case "$?" in 0) cat >&4 <<EOM You can access character data pretty unalignedly. |