diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2007-03-30 07:44:11 +0300 |
---|---|---|
committer | Steve Peters <steve@fisharerojo.org> | 2007-03-30 03:24:22 +0000 |
commit | 37723ebb3f0f145b85438cb89891a2c80a5f149e (patch) | |
tree | 653cc8a84aeffe8b7ff87941ce326898a19b6bf3 /cflags.SH | |
parent | 2c454cbd693e2f6a6c12d8a4c7f82f006f7cc257 (diff) | |
download | perl-37723ebb3f0f145b85438cb89891a2c80a5f149e.tar.gz |
cflags.SH: 30327 wasn't portable Bourne (avoid '!: not found')
Message-Id: <200703300144.l2U1iBSA490663@kosh.hut.fi>
p4raw-id: //depot/perl@30779
Diffstat (limited to 'cflags.SH')
-rwxr-xr-x | cflags.SH | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -17,7 +17,7 @@ case "$0" in */*) cd `expr X$0 : 'X\(.*\)/'` ;; esac -if test -f config_h.SH && ! test -f config.h; then +if test -f config_h.SH -a ! -f config.h; then . ./config_h.SH CONFIG_H=already-done fi |