diff options
author | rillig <rillig@pkgsrc.org> | 2007-11-07 10:52:00 +0000 |
---|---|---|
committer | rillig <rillig@pkgsrc.org> | 2007-11-07 10:52:00 +0000 |
commit | e5fa877447330e8b2d609dd6a81509b79e7e63d6 (patch) | |
tree | 2707cf34b562aaaa35729680a2394bd6acbb1e5b /mk/check | |
parent | bf77b3dccd780b2743abeb127c0e0fd9688c719a (diff) | |
download | pkgsrc-e5fa877447330e8b2d609dd6a81509b79e7e63d6.tar.gz |
Activated the check-interpreter for PKG_DEVELOPERs. I don't remember why
activating this has taken so long.
Diffstat (limited to 'mk/check')
-rw-r--r-- | mk/check/check-interpreter.mk | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/mk/check/check-interpreter.mk b/mk/check/check-interpreter.mk index df922e4e756..1f6138b43d4 100644 --- a/mk/check/check-interpreter.mk +++ b/mk/check/check-interpreter.mk @@ -1,4 +1,4 @@ -# $NetBSD: check-interpreter.mk,v 1.19 2007/03/24 18:12:08 heinz Exp $ +# $NetBSD: check-interpreter.mk,v 1.20 2007/11/07 10:52:00 rillig Exp $ # # This file checks that after installation, all files of the package # that start with a "#!" line will find their interpreter. Files that @@ -23,7 +23,11 @@ # Example: share/package1/* share/package2/somefile # +.if defined(PKG_DEVELOPER) +CHECK_INTERPRETER?= yes +.else CHECK_INTERPRETER?= no +.endif CHECK_INTERPRETER_SKIP?= # empty _CHECK_INTERP_SKIP= share/doc/* |