diff options
author | nia <nia@pkgsrc.org> | 2019-07-02 08:31:02 +0000 |
---|---|---|
committer | nia <nia@pkgsrc.org> | 2019-07-02 08:31:02 +0000 |
commit | 5e5c80820f7d04792ee8af341848161e81f106f2 (patch) | |
tree | 9e8a3619b15acd12d5b6a2b2175aeae6de63a4c4 /emulators/openmsx | |
parent | a2b9813095fb17911dd4f53b2c580258d2986cf0 (diff) | |
download | pkgsrc-5e5c80820f7d04792ee8af341848161e81f106f2.tar.gz |
openmsx: make g++ the default case.
Diffstat (limited to 'emulators/openmsx')
-rw-r--r-- | emulators/openmsx/Makefile | 7 |
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 |