diff options
author | kristerw <kristerw@pkgsrc.org> | 2003-12-29 02:02:38 +0000 |
---|---|---|
committer | kristerw <kristerw@pkgsrc.org> | 2003-12-29 02:02:38 +0000 |
commit | 4a6093b3869aacc5bd0904485b4a586e9d54c861 (patch) | |
tree | 71311d27a264b157860d28c1f265e3f7937514be /net | |
parent | bf8cf018585b5845ade195e608dbe0cfb31468ed (diff) | |
download | pkgsrc-4a6093b3869aacc5bd0904485b4a586e9d54c861.tar.gz |
Move inclusion of mk/bsd.prefs.mk up a couple of lines to make
CC_VERSION defined before it is used.
Diffstat (limited to 'net')
-rw-r--r-- | net/kdenetwork/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/net/kdenetwork/Makefile b/net/kdenetwork/Makefile index 81e2976f381..f62d5652d24 100644 --- a/net/kdenetwork/Makefile +++ b/net/kdenetwork/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.67 2003/12/26 19:56:52 wiz Exp $ +# $NetBSD: Makefile,v 1.68 2003/12/29 02:02:38 kristerw Exp $ # FreeBSD Id: Makefile,v 1.3 1997/11/05 04:19:54 asami Exp # @@ -32,14 +32,14 @@ CONFIGURE_ENV= KDEDIR=${KDEBASEDIR} \ FIX_RPATH+= KDE_LDFLAGS KDE_LDFLAGS= -L${LOCALBASE}/lib -Wl,${RPATH_FLAG}${LOCALBASE}/lib -L${X11BASE}/lib -Wl,${RPATH_FLAG}${X11BASE}/lib +.include "../../mk/bsd.prefs.mk" + .if !empty(CC_VERSION:Megcs*) PLIST_SRC= ${PKGDIR}/PLIST.egcs .else PLIST_SRC= ${PKGDIR}/PLIST.gcc .endif -.include "../../mk/bsd.prefs.mk" - .if ${OPSYS} == "SunOS" PLIST_SRC= ${PKGDIR}/PLIST-SunOS CPPFLAGS= -I${LOCALBASE}/include |