diff options
author | agc <agc> | 2003-08-08 12:04:40 +0000 |
---|---|---|
committer | agc <agc> | 2003-08-08 12:04:40 +0000 |
commit | b75bc73ed91a5f9882cd898fd32e06398a15e2ec (patch) | |
tree | ca3ed49f7bd9117060bdfc306c81acd4b87078d9 /mk/bsd.pkg.mk | |
parent | bea095759011ce8b9e8d36a1d47ce0e1f9083f5a (diff) | |
download | pkgsrc-b75bc73ed91a5f9882cd898fd32e06398a15e2ec.tar.gz |
Use saner values for PKGSRC_SHOW_BUILD_DEFS - make this switch on "yes"
or "YES", rather than a straight definition.
Diffstat (limited to 'mk/bsd.pkg.mk')
-rw-r--r-- | mk/bsd.pkg.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mk/bsd.pkg.mk b/mk/bsd.pkg.mk index 0059f4914a8..508a8637ca1 100644 --- a/mk/bsd.pkg.mk +++ b/mk/bsd.pkg.mk @@ -1,4 +1,4 @@ -# $NetBSD: bsd.pkg.mk,v 1.1232 2003/08/08 08:43:37 agc Exp $ +# $NetBSD: bsd.pkg.mk,v 1.1233 2003/08/08 12:04:40 agc Exp $ # # This file is in the public domain. # @@ -34,7 +34,7 @@ MAKE_ENV+= USETOOLS="${USETOOLS}" # Makefile, which are usually not customizable. .PHONY: pre-extract build-defs-message pre-extract: build-defs-message -.if !defined(PKGSRC_SHOW_BUILD_DEFS) +.if ${PKGSRC_SHOW_BUILD_DEFS} != "YES" && ${PKGSRC_SHOW_BUILD_DEFS} != "yes" build-defs-message: .elif !target(build-defs-message) build-defs-message: ${WRKDIR} |