aboutsummaryrefslogtreecommitdiffstats
path: root/x11-toolkits/py-gtk2
diff options
context:
space:
mode:
authormarcus <marcus@FreeBSD.org>2004-03-14 02:01:33 +0800
committermarcus <marcus@FreeBSD.org>2004-03-14 02:01:33 +0800
commitd88fe55f5efb30a6d895779d7da179bdbd1731b7 (patch)
tree6269e3db7d2730b48170c41545dd311b25cc7642 /x11-toolkits/py-gtk2
parent06d037a47d325e78874891ad17f6ba31d636fea4 (diff)
downloadfreebsd-ports-gnome-d88fe55f5efb30a6d895779d7da179bdbd1731b7.tar.gz
freebsd-ports-gnome-d88fe55f5efb30a6d895779d7da179bdbd1731b7.tar.zst
freebsd-ports-gnome-d88fe55f5efb30a6d895779d7da179bdbd1731b7.zip
Correct a typo that prevented thread support from being enabled.
Submitted by: Davide D'Amico <dave@civetta.gufi.org>
Diffstat (limited to 'x11-toolkits/py-gtk2')
-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}