diff options
author | bsiegert <bsiegert@pkgsrc.org> | 2015-03-01 11:01:14 +0000 |
---|---|---|
committer | bsiegert <bsiegert@pkgsrc.org> | 2015-03-01 11:01:14 +0000 |
commit | 96d049d13a33531d00f42b7dba7eec1f23101bfb (patch) | |
tree | 4cdb03833dd4b4971105203a9ca0801257c6362b /misc | |
parent | b610b1dbb2231795fd3ae6dc26a0cc8ba68b27f8 (diff) | |
download | pkgsrc-96d049d13a33531d00f42b7dba7eec1f23101bfb.tar.gz |
Fix Fortran compiler selection logic.
Fix by OBATA Akio in PR pkg/37513.
Diffstat (limited to 'misc')
-rw-r--r-- | misc/root/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/misc/root/Makefile b/misc/root/Makefile index 165b94073e9..c7ef1a275f0 100644 --- a/misc/root/Makefile +++ b/misc/root/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.56 2014/12/27 00:56:46 dholland Exp $ +# $NetBSD: Makefile,v 1.57 2015/03/01 11:01:14 bsiegert Exp $ DISTNAME= root_v5.26.00b.source PKGNAME= root-5.26 @@ -12,8 +12,8 @@ COMMENT= OO framework for data analysis and visualisation WRKSRC= ${WRKDIR}/root USE_TOOLS+= gmake -USE_LANGUAGES= c c++ #fortran f2c lacks LOC() -.include "../../lang/gcc3-f77/buildlink3.mk" +USE_LANGUAGES= c c++ fortran +NOT_FOR_COMPILER+= f2c #lacks LOC() CHECK_PORTABILITY_SKIP= build/win/*.sh cint/tool/INSTALLBIN BUILD_TARGET= |