summaryrefslogtreecommitdiff
path: root/emulators
diff options
context:
space:
mode:
authornia <nia@pkgsrc.org>2019-07-02 08:31:02 +0000
committernia <nia@pkgsrc.org>2019-07-02 08:31:02 +0000
commit5e5c80820f7d04792ee8af341848161e81f106f2 (patch)
tree9e8a3619b15acd12d5b6a2b2175aeae6de63a4c4 /emulators
parenta2b9813095fb17911dd4f53b2c580258d2986cf0 (diff)
downloadpkgsrc-5e5c80820f7d04792ee8af341848161e81f106f2.tar.gz
openmsx: make g++ the default case.
Diffstat (limited to 'emulators')
-rw-r--r--emulators/openmsx/Makefile7
1 files changed, 2 insertions, 5 deletions
diff --git a/emulators/openmsx/Makefile b/emulators/openmsx/Makefile
index f6577ff7902..4531e3d650e 100644
--- a/emulators/openmsx/Makefile
+++ b/emulators/openmsx/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.55 2019/06/17 15:23:34 nia Exp $
+# $NetBSD: Makefile,v 1.56 2019/07/02 08:31:02 nia Exp $
DISTNAME= openmsx-0.15.0
CATEGORIES= emulators
@@ -44,11 +44,8 @@ do-configure:
.if !empty(PKGSRC_COMPILER:Mclang)
cd ${WRKSRC} && ${CONFIGURE_ENV} CXX=clang++ \
${GMAKE} -f build/main.mk probe
-.elif !empty(PKGSRC_COMPILER:Mgcc)
- cd ${WRKSRC} && ${CONFIGURE_ENV} CXX=g++ \
- ${GMAKE} -f build/main.mk probe
.else
- cd ${WRKSRC} && ${CONFIGURE_ENV} \
+ cd ${WRKSRC} && ${CONFIGURE_ENV} CXX=g++ \
${GMAKE} -f build/main.mk probe
.endif