diff options
author | Nicholas Clark <nick@ccl4.org> | 2008-12-20 21:50:22 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2008-12-20 21:50:22 +0000 |
commit | 8b845f197ad9c905082421adc4c1a23b49886ad3 (patch) | |
tree | accb1e778f10e8b5db67bce0d0103ffa5aae809d | |
parent | f9b1f8657740bc15483dd2b6dd62ededf88f8319 (diff) | |
download | perl-8b845f197ad9c905082421adc4c1a23b49886ad3.tar.gz |
/bin/sh isn't /usr/bin/perl :-)
Change elsif to the correct "else if" construction.
I suspect that this slipped by into f6a80292c3db127d1561c118f409c1cffd1b55d9
because cflags.SH doesn't seem to be re-expanded if it's newer than cflags.
-rwxr-xr-x | cflags.SH | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -356,8 +356,10 @@ esac if test -d .git; then ccflags="-DPERL_PATCHNUM=`git describe` $ccflags" -elsif test -f .patch; then - ccflags="-DPERL_PATCHNUM=`awk '{print $4}' .patch` $ccflags" +else + if test -f .patch; then + ccflags="-DPERL_PATCHNUM=`awk '{print $4}' .patch` $ccflags" + fi fi : Can we perhaps use $ansi2knr here |