diff options
author | joerg <joerg@pkgsrc.org> | 2011-11-13 22:28:03 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2011-11-13 22:28:03 +0000 |
commit | 521adba550a14d4477b39149048c66fd16ce216a (patch) | |
tree | 372dc68eb14036c1221a4ccc59c5f79252f191f7 /mk | |
parent | 57dd2b1076adae1dd566d088e74b00605be93de9 (diff) | |
download | pkgsrc-521adba550a14d4477b39149048c66fd16ce216a.tar.gz |
Don't bail out with parse error if _EXPERIMENTAL isn't set.
Diffstat (limited to 'mk')
-rw-r--r-- | mk/misc/import.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mk/misc/import.mk b/mk/misc/import.mk index f3892cf297f..f39c290100a 100644 --- a/mk/misc/import.mk +++ b/mk/misc/import.mk @@ -1,4 +1,4 @@ -# $NetBSD: import.mk,v 1.1 2009/07/26 21:36:38 rillig Exp $ +# $NetBSD: import.mk,v 1.2 2011/11/13 22:28:03 joerg Exp $ # # import: @@ -44,7 +44,7 @@ _IMPORT_ERRORS+= "[import.mk] Don't import packages that have something TODO." .if exists(${PKGSRCDIR}/${CATEGORY:Unonexistent}/${PKGPATH:T}/Makefile) _IMPORT_ERRORS+= "[import.mk] The package ${CATEGORY}/${PKGPATH:T} already exists." .endif -.if ${_EXPERIMENTAL} != "yes" +.if ${_EXPERIMENTAL:U""} != "yes" _IMPORT_ERRORS+= "[import.mk] The \"import\" target is experimental." .endif |