Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/openssl/openssl.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2003-03-20 14:44:31 +0300
committerRichard Levitte <levitte@openssl.org>2003-03-20 14:44:31 +0300
commite4fb312330a6e9c8122ccad817db0d144768a498 (patch)
treeeeb4e818a1ecdd9dd050ee3afbc4413888005a90 /config
parent1296e72d1d97ed19ae3fcb27fb343e8539a9bf01 (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 cfcd4720f4..b3bd96bbfc 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}