diff options
author | jperkin <jperkin@pkgsrc.org> | 2021-07-14 09:15:35 +0000 |
---|---|---|
committer | jperkin <jperkin@pkgsrc.org> | 2021-07-14 09:15:35 +0000 |
commit | 448a2ab239ae923775f470f18c4f0dad7114078f (patch) | |
tree | dda2c8ad1860cd51fbe6aa2caa2700c49df0c331 /lang | |
parent | 8a53cb92edb45e133f646b01c30904f293b84430 (diff) | |
download | pkgsrc-448a2ab239ae923775f470f18c4f0dad7114078f.tar.gz |
ghc90: Ensure bsd.prefs.mk is included.
Fixes builds on OS where PKG_SUPPORTED_OPTIONS is not defined, so
bsd.options.mk is not pulled in, but OPSYS is still tested.
Diffstat (limited to 'lang')
-rw-r--r-- | lang/ghc90/options.mk | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lang/ghc90/options.mk b/lang/ghc90/options.mk index 2cf793cd6b5..e36d1aa6411 100644 --- a/lang/ghc90/options.mk +++ b/lang/ghc90/options.mk @@ -1,7 +1,9 @@ -# $NetBSD: options.mk,v 1.2 2021/05/23 06:33:23 pho Exp $ +# $NetBSD: options.mk,v 1.3 2021/07/14 09:15:35 jperkin Exp $ PKG_OPTIONS_VAR= PKG_OPTIONS.ghc +.include "../../mk/bsd.prefs.mk" + # GHC has a native implementation of codegen for some platforms. On # those platforms LLVM is optional. It's a requirement anywhere else. # See compiler/GHC/Driver/Backend.hs |