summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwiedi <wiedi@pkgsrc.org>2017-09-24 21:07:17 +0000
committerwiedi <wiedi@pkgsrc.org>2017-09-24 21:07:17 +0000
commitb158b5fd53d3c863ac51d93fb0d802de28713fd1 (patch)
tree1db37aa9868361e8327127ca4a709b8479ef98bc
parent1a1bb77ef4be73e4640b961b99159faf864a4baa (diff)
downloadpkgsrc-b158b5fd53d3c863ac51d93fb0d802de28713fd1.tar.gz
arm-none-eabi-gcc: fix build on SunOS
SunOS also needs the libcpp PLIST entries.
-rw-r--r--cross/arm-none-eabi-gcc/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/cross/arm-none-eabi-gcc/Makefile b/cross/arm-none-eabi-gcc/Makefile
index 77c0a72fcf0..0dfc78e197e 100644
--- a/cross/arm-none-eabi-gcc/Makefile
+++ b/cross/arm-none-eabi-gcc/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.8 2017/09/20 03:49:55 ryoon Exp $
+# $NetBSD: Makefile,v 1.9 2017/09/24 21:07:17 wiedi Exp $
DISTNAME= gcc-7.2.0
PKGNAME= cross-arm-none-eabi-${DISTNAME}
@@ -61,7 +61,7 @@ PLIST_VARS+= libcpp
CFLAGS+= -fbracket-depth=1024
.endif
-.if ${OPSYS} == "FreeBSD" || ${OPSYS} == "Linux" || ${OPSYS} == "NetBSD"
+.if ${OPSYS} == "FreeBSD" || ${OPSYS} == "Linux" || ${OPSYS} == "NetBSD" || ${OPSYS} == "SunOS"
PLIST.libcpp= yes
.endif