diff options
author | marcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059> | 2007-01-14 16:25:35 +0800 |
---|---|---|
committer | marcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059> | 2007-01-14 16:25:35 +0800 |
commit | 9f9e9f6ba1fef879e29cf0cf26d06f1b4f075963 (patch) | |
tree | 7af4da1db74d3d2b385d38c9434a5209917f0dcb /www/mozilla | |
parent | a9ccfdf3261847af17507d24c944fc0843ddfea6 (diff) | |
download | marcuscom-ports-9f9e9f6ba1fef879e29cf0cf26d06f1b4f075963.tar marcuscom-ports-9f9e9f6ba1fef879e29cf0cf26d06f1b4f075963.tar.gz marcuscom-ports-9f9e9f6ba1fef879e29cf0cf26d06f1b4f075963.tar.bz2 marcuscom-ports-9f9e9f6ba1fef879e29cf0cf26d06f1b4f075963.tar.lz marcuscom-ports-9f9e9f6ba1fef879e29cf0cf26d06f1b4f075963.tar.xz marcuscom-ports-9f9e9f6ba1fef879e29cf0cf26d06f1b4f075963.tar.zst marcuscom-ports-9f9e9f6ba1fef879e29cf0cf26d06f1b4f075963.zip |
Fix our gross -lpthread hack to work with GCC 4.1.
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@8202 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'www/mozilla')
-rw-r--r-- | www/mozilla/Makefile.common | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/www/mozilla/Makefile.common b/www/mozilla/Makefile.common index 9abd94a56..701744f74 100644 --- a/www/mozilla/Makefile.common +++ b/www/mozilla/Makefile.common @@ -4,7 +4,7 @@ # Whom: Michael Johnson <ahze@FreeBSD.org> # # $FreeBSD$ -# $MCom: ports/www/mozilla/Makefile.common,v 1.40 2006/12/20 18:55:12 ahze Exp $ +# $MCom: ports/www/mozilla/Makefile.common,v 1.41 2007/01/14 07:06:34 marcus Exp $ # This file contains some reusable components for mozilla ports. It's of # use primarily to apps from the mozilla project itself (such as Firefox, @@ -87,7 +87,7 @@ GENERIC_MOZCONFIG?= ${.CURDIR}/../../www/mozilla/files/mozconfig-generic.in PORT_MOZCONFIG?= ${FILESDIR}/mozconfig.in MOZCONFIG?= ${WRKSRC}/.mozconfig MOZILLA_PLIST_DIRS?= bin include lib share/idl -GECKO_PTHREAD_LIBS!=${CC} -dumpspecs | ${GREP} pthread | ${SED} -e 's|^.*%{\!pg: %{pthread:|| ; s|}.*$$||' || ${TRUE} +GECKO_PTHREAD_LIBS!=${CC} -dumpspecs | ${GREP} -m 1 pthread | ${SED} -e 's|^.*%{\!pg: %{pthread:|| ; s|}.*$$||' || ${TRUE} PKGINSTALL?= ${WRKDIR}/pkg-install PKGDEINSTALL?= ${WRKDIR}/pkg-deinstall MASTER_MOZDIR?= ${PORTSDIR}/www/mozilla |