diff options
author | wiedi <wiedi@pkgsrc.org> | 2014-02-16 15:41:54 +0000 |
---|---|---|
committer | wiedi <wiedi@pkgsrc.org> | 2014-02-16 15:41:54 +0000 |
commit | 565a6be0688511a81649486105ee0c20f5242917 (patch) | |
tree | 13f7641e923567b9fa61cda5155122d8e1e96e2a /time | |
parent | 4e10cde87f7aa0e74c80f8cc021a30d314f6f690 (diff) | |
download | pkgsrc-565a6be0688511a81649486105ee0c20f5242917.tar.gz |
Use correct BUILD_TARGET on SunOS
Diffstat (limited to 'time')
-rw-r--r-- | time/plan/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/time/plan/Makefile b/time/plan/Makefile index 7666c6318fb..32e2e90f591 100644 --- a/time/plan/Makefile +++ b/time/plan/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.31 2012/10/08 13:04:27 asau Exp $ +# $NetBSD: Makefile,v 1.32 2014/02/16 15:41:54 wiedi Exp $ DISTNAME= plan-1.9 PKGREVISION= 1 @@ -23,6 +23,10 @@ INSTALLATION_DIRS= libexec/plan ${PKGMANDIR}/man1 ${PKGMANDIR}/man4 \ BUILD_TARGET= ${LOWER_VENDOR}${OS_VERSION:C/.[0-9]//} .endif +.if ${OPSYS} == "SunOS" +BUILD_TARGET= "solg" +.endif + .include "../../mk/compiler.mk" .if !empty(CC_VERSION:Mgcc-3.*) |