diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2002-09-19 21:59:48 +0300 |
---|---|---|
committer | Abhijit Menon-Sen <ams@wiw.org> | 2002-09-19 17:21:24 +0000 |
commit | 61074b56bec688db916ab8fff6f579810626a32e (patch) | |
tree | c044373a9ec2539fd2fb006a44b4996367585e56 /hints/aix.sh | |
parent | cc7677572c19f8b77c0c19d888a83ce6176a1a87 (diff) | |
download | perl-61074b56bec688db916ab8fff6f579810626a32e.tar.gz |
[PATCH] AIX test shouldn't trip OS/400 PASE
Date: Thu, 19 Sep 2002 18:59:48 +0300
Message-Id: <20020919155948.GU208696@lyta.hut.fi>
Subject: [PATCH] more PASE tweakage
From: Jarkko Hietaniemi <jhi@iki.fi>
Date: Thu, 19 Sep 2002 18:01:44 +0300
Message-Id: <20020919150144.GJ208696@lyta.hut.fi>
p4raw-id: //depot/perl@17912
Diffstat (limited to 'hints/aix.sh')
-rw-r--r-- | hints/aix.sh | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/hints/aix.sh b/hints/aix.sh index bee147965b..427412eb90 100644 --- a/hints/aix.sh +++ b/hints/aix.sh @@ -215,7 +215,10 @@ cc*|xlc*) # cc should've been set by line 116 or so if empty. if test ! -x /usr/bin/$cc -a -x /usr/vac/bin/$cc; then case ":$PATH:" in *:/usr/vac/bin:*) ;; - *) cat <<EOF + *) if test ! -x /QOpenSys/usr/bin/$cc; then + # The /QOpenSys/usr/bin/$cc saves us if we are + # building natively in OS/400 PASE. + cat <<EOF *** *** You either implicitly or explicitly specified an IBM C compiler, @@ -224,7 +227,8 @@ cc*|xlc*) # cc should've been set by line 116 or so if empty. *** in your PATH. I suggest adding that and retrying Configure. *** EOF - exit 1 + exit 1 + fi ;; esac fi |