diff options
author | joerg <joerg> | 2008-12-02 19:04:05 +0000 |
---|---|---|
committer | joerg <joerg> | 2008-12-02 19:04:05 +0000 |
commit | 552feac3c0e4017b1c6d11ef6bd9f5ef79d21e87 (patch) | |
tree | 26886df85ef0e8a35622eee28d28f91e47271dc0 | |
parent | 9b95cf0aa52346f95bfcb48583c67788fea311fe (diff) | |
download | pkgsrc-552feac3c0e4017b1c6d11ef6bd9f5ef79d21e87.tar.gz |
Fix include order. Addresses PR 40085.
-rw-r--r-- | x11/py-gtk2/Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/x11/py-gtk2/Makefile b/x11/py-gtk2/Makefile index b82ea8f0b22..464b82f2825 100644 --- a/x11/py-gtk2/Makefile +++ b/x11/py-gtk2/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.54 2008/11/18 12:46:52 drochner Exp $ +# $NetBSD: Makefile,v 1.55 2008/12/02 19:04:05 joerg Exp $ # DISTNAME= pygtk-2.13.0 @@ -27,10 +27,11 @@ PYTHON_VERSIONS_ACCEPTED= 24 25 BUILDLINK_API_DEPENDS.pygobject+= ${PYPKGPREFIX}-gobject>=2.15.3 -.include "../../devel/libglade/buildlink3.mk" -.include "../../graphics/py-cairo/buildlink3.mk" .include "../../lang/python/extension.mk" .include "../../lang/python/application.mk" + +.include "../../devel/libglade/buildlink3.mk" +.include "../../graphics/py-cairo/buildlink3.mk" .include "../../math/py-Numeric/buildlink3.mk" .include "../../devel/py-gobject/buildlink3.mk" .include "../../x11/gtk2/buildlink3.mk" |