summaryrefslogtreecommitdiffstats
path: root/config
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2003-03-20 11:44:28 +0000
committerRichard Levitte <levitte@openssl.org>2003-03-20 11:44:28 +0000
commit439909a0689c586097ffcd62e44ec2b5bb50f04f (patch)
treea3f4416b7ba9f97fa8ddfbb195843006f5c8e628 /config
parentd177e6180d2b353b2fa024a5b98bcb017168edbd (diff)
Some shells (ksh in this case) don't say 'command not found'.
PR: 540
Diffstat (limited to 'config')
-rwxr-xr-xconfig2
1 files changed, 1 insertions, 1 deletions
diff --git a/config b/config
index 2f3878f107..79ce83aac3 100755
--- a/config
+++ b/config
@@ -458,7 +458,7 @@ if [ "${SYSTEM}-${MACHINE}" = "Linux-alpha" ]; then
fi
if [ "${SYSTEM}" = "AIX" ]; then # favor vendor cc over gcc
- (cc) 2>&1 | grep -iv "command not found" > /dev/null && CC=cc
+ (cc) 2>&1 | grep -iv "not found" > /dev/null && CC=cc
fi
CCVER=${CCVER:-0}