summaryrefslogtreecommitdiff
path: root/devel/swig-build
diff options
context:
space:
mode:
authorjlam <jlam@pkgsrc.org>2004-03-18 09:12:08 +0000
committerjlam <jlam@pkgsrc.org>2004-03-18 09:12:08 +0000
commit7db11b582a4d621362622fad99df1da62e930ffa (patch)
tree98bc5d9451729f031998fd23ac3319a5618c75b0 /devel/swig-build
parent46cf8098c1fdcd3f6e05f41ed78671dfaa7ae192 (diff)
downloadpkgsrc-7db11b582a4d621362622fad99df1da62e930ffa.tar.gz
Fix serious bug where BUILDLINK_PACKAGES wasn't being ordered properly
by moving the inclusion of buildlink3.mk files outside of the protected region. This bug would be seen by users that have set PREFER_PKGSRC or PREFER_NATIVE to non-default values. BUILDLINK_PACKAGES should be ordered so that for any package in the list, that package doesn't depend on any packages to the left of it in the list. This ordering property is used to check for builtin packages in the correct order. The problem was that including a buildlink3.mk file for <pkg> correctly ensured that <pkg> was removed from BUILDLINK_PACKAGES and appended to the end. However, since the inclusion of any other buildlink3.mk files within that buildlink3.mk was in a region that was protected against multiple inclusion, those dependencies weren't also moved to the end of BUILDLINK_PACKAGES.
Diffstat (limited to 'devel/swig-build')
-rw-r--r--devel/swig-build/buildlink3.mk9
1 files changed, 4 insertions, 5 deletions
diff --git a/devel/swig-build/buildlink3.mk b/devel/swig-build/buildlink3.mk
index 008e6c4f834..3afb9fb61c3 100644
--- a/devel/swig-build/buildlink3.mk
+++ b/devel/swig-build/buildlink3.mk
@@ -1,8 +1,10 @@
-# $NetBSD: buildlink3.mk,v 1.1 2004/03/07 23:20:55 minskim Exp $
+# $NetBSD: buildlink3.mk,v 1.2 2004/03/18 09:12:11 jlam Exp $
BUILDLINK_DEPTH:= ${BUILDLINK_DEPTH}+
SWIG_BUILD_BUILDLINK3_MK:= ${SWIG_BUILD_BUILDLINK3_MK}+
+.include "../../devel/swig-build/Makefile.version"
+
.if !empty(BUILDLINK_DEPTH:M+)
BUILDLINK_DEPENDS+= swig-build
.endif
@@ -11,14 +13,11 @@ BUILDLINK_PACKAGES:= ${BUILDLINK_PACKAGES:Nswig-build}
BUILDLINK_PACKAGES+= swig-build
.if !empty(SWIG_BUILD_BUILDLINK3_MK:M+)
-BUILDLINK_DEPENDS.swig-build+= swig-build>=${SWIG_VERSION}
+BUILDLINK_DEPENDS.swig-build+= swig-build>=${SWIG_VERSION}
BUILDLINK_PKGSRCDIR.swig-build?= ../../devel/swig-build
# This package contains no run-time components.
BUILDLINK_DEPMETHOD.swig-build?= build
-
-.include "../../devel/swig-build/Makefile.version"
-
.endif # SWIG_BUILD_BUILDLINK3_MK
BUILDLINK_DEPTH:= ${BUILDLINK_DEPTH:S/+$//}