diff options
author | jperkin <jperkin@pkgsrc.org> | 2016-02-25 08:20:25 +0000 |
---|---|---|
committer | jperkin <jperkin@pkgsrc.org> | 2016-02-25 08:20:25 +0000 |
commit | a9480760c2c6f5a5caa6624d12945492f6d1aeba (patch) | |
tree | e7082d2ae924a6325c9ce651c5759e2d044abf84 | |
parent | 04325206ad274723044f67b9b74a4d1f7cca25c4 (diff) | |
download | pkgsrc-a9480760c2c6f5a5caa6624d12945492f6d1aeba.tar.gz |
Expand the default list of OPSYSVARS to include those commonly used
already, plus those that are most used in OPSYS-specific sections.
-rw-r--r-- | mk/bsd.pkg.mk | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/mk/bsd.pkg.mk b/mk/bsd.pkg.mk index d684246435f..a0fddec8fcb 100644 --- a/mk/bsd.pkg.mk +++ b/mk/bsd.pkg.mk @@ -1,4 +1,4 @@ -# $NetBSD: bsd.pkg.mk,v 1.2015 2015/12/13 06:05:25 richard Exp $ +# $NetBSD: bsd.pkg.mk,v 1.2016 2016/02/25 08:20:25 jperkin Exp $ # # This file is in the public domain. # @@ -139,6 +139,10 @@ PKG_FAIL_REASON+='Please unset PKG_PATH before doing pkgsrc work!' # Allow variables to be set on a per-OS basis OPSYSVARS+= CFLAGS CXXFLAGS CPPFLAGS LDFLAGS LIBS +OPSYSVARS+= CMAKE_ARGS CONFIGURE_ARGS CONFIGURE_ENV +OPSYSVARS+= BUILDLINK_TRANSFORM SUBST_CLASSES +OPSYSVARS+= BUILD_TARGET MAKE_ENV USE_TOOLS +OPSYSVARS+= PKG_SUPPORTED_OPTIONS PKG_SUGGESTED_OPTIONS .for _var_ in ${OPSYSVARS:O} . if defined(${_var_}.${OPSYS}) ${_var_}+= ${${_var_}.${OPSYS}} |