summaryrefslogtreecommitdiff
path: root/x11-toolkits
diff options
context:
space:
mode:
authorJoe Marcus Clarke <marcus@FreeBSD.org>2004-03-13 18:01:33 +0000
committerJoe Marcus Clarke <marcus@FreeBSD.org>2004-03-13 18:01:33 +0000
commite0c94fddfd4302ceea5cbf90d0f179e67e90dcd4 (patch)
treead71dd1dce0036808eed090c8b62fa7338d65e2d /x11-toolkits
parentRemove artifacts from local testing here; fix formatting. (diff)
Correct a typo that prevented thread support from being enabled.
Submitted by: Davide D'Amico <dave@civetta.gufi.org>
Notes
Notes: svn path=/head/; revision=103887
Diffstat (limited to 'x11-toolkits')
-rw-r--r--x11-toolkits/py-gtk2/Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/x11-toolkits/py-gtk2/Makefile b/x11-toolkits/py-gtk2/Makefile
index 1bfae42d0113..289f7decedeb 100644
--- a/x11-toolkits/py-gtk2/Makefile
+++ b/x11-toolkits/py-gtk2/Makefile
@@ -6,6 +6,7 @@
PORTNAME= gtk
PORTVERSION= 2.2.0
+PORTREVISION= 1
CATEGORIES= x11-toolkits python
MASTER_SITES= ${MASTER_SITE_GNOME}
MASTER_SITE_SUBDIR= sources/pygtk/2.2
@@ -33,7 +34,7 @@ CONFLICTS= py*-gtk-0*
# Use the same way as the Python port to determine if we want
# threading support.
#
-LIBC_R!= /sbin/ldconfig -r | grep "c_r|pthread" || true
+LIBC_R!= /sbin/ldconfig -r | grep "c_r\|pthread" || true
.if (${LIBC_R} != "") && !defined(WITHOUT_THREADS)
CONFIGURE_ARGS+= --enable-thread
CFLAGS+= ${PTHREAD_CFLAGS}