diff options
author | rillig <rillig@pkgsrc.org> | 2005-04-13 16:47:10 +0000 |
---|---|---|
committer | rillig <rillig@pkgsrc.org> | 2005-04-13 16:47:10 +0000 |
commit | c0b6a86866b31349904bfad32819e05e39dd976e (patch) | |
tree | e3d2b9cfda021d355f4029ba52f9f81f9c38002b /x11/tk | |
parent | 7dfb2ab9168a1210ab04daafc06d6053b985140a (diff) | |
download | pkgsrc-c0b6a86866b31349904bfad32819e05e39dd976e.tar.gz |
Marked pthread as required for NetBSD-1.6.2. Fixed some quoting errors.
Approved by jlam.
Diffstat (limited to 'x11/tk')
-rw-r--r-- | x11/tk/Makefile | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/x11/tk/Makefile b/x11/tk/Makefile index af9295f6adf..797f67dfd2f 100644 --- a/x11/tk/Makefile +++ b/x11/tk/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.42 2005/04/11 21:48:14 tv Exp $ +# $NetBSD: Makefile,v 1.43 2005/04/13 16:47:10 rillig Exp $ DISTNAME= tk8.4.9-src PKGNAME= tk-8.4.9 @@ -18,15 +18,17 @@ USE_LIBTOOL= yes GNU_CONFIGURE= yes CONFIGURE_ARGS+= --with-tcl=${BUILDLINK_PREFIX.tcl}/lib CONFIGURE_ARGS+= --enable-threads -MAKE_ENV+= TOUCH="${TOUCH}" +MAKE_ENV+= TOUCH=${TOUCH:Q} +PTHREAD_OPTS+= require TEST_TARGET= test # Initially install the man pages into ${WRKDIR}/man, as we need a staged # install to avoid overwriting existing manpages in ${PREFIX}/man. -CONFIGURE_ARGS+= --mandir=${WRKDIR}/man +CONFIGURE_ARGS+= --mandir=${WRKDIR:Q}/man .include "../../lang/tcl/buildlink3.mk" +.include "../../mk/pthread.buildlink3.mk" post-build: ${SED} -e "s|^\(.*\)='\(.*\)'|\1=\"\2\"|" \ |