diff options
author | garbled <garbled> | 2005-03-12 11:08:04 +0000 |
---|---|---|
committer | garbled <garbled> | 2005-03-12 11:08:04 +0000 |
commit | ffc3de74f0b438cc50cc635863b1e69ccf528b5f (patch) | |
tree | 7c12777e84fdcc7531adf64ed4bae40cb329172c /mk/platform/AIX.mk | |
parent | 51ba8354df778882811f47652d33b5cff3c222af (diff) | |
download | pkgsrc-ffc3de74f0b438cc50cc635863b1e69ccf528b5f.tar.gz |
Since it's not particularly easy to get perl compiling under pkgsrc on
AIX, and AIX ships with perl 5 by default, allow pkgsrc to use it for
building stuff.
Diffstat (limited to 'mk/platform/AIX.mk')
-rw-r--r-- | mk/platform/AIX.mk | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/mk/platform/AIX.mk b/mk/platform/AIX.mk index def2c9592de..84bdfb452b1 100644 --- a/mk/platform/AIX.mk +++ b/mk/platform/AIX.mk @@ -1,4 +1,4 @@ -# $NetBSD: AIX.mk,v 1.9 2005/02/16 08:03:44 grant Exp $ +# $NetBSD: AIX.mk,v 1.10 2005/03/12 11:08:04 garbled Exp $ # # Variable definitions for the AIX operating system. @@ -67,7 +67,11 @@ PAX?= ${LOCALBASE}/bin/pax .else PAX?= /bin/pax .endif +.if exists(${LOCALBASE}/bin/perl) PERL5?= ${LOCALBASE}/bin/perl +.else +PERL5?= /usr/bin/perl +.endif PKGLOCALEDIR?= share PS?= /bin/ps PWD_CMD?= /bin/pwd # needs to print physical path |