diff options
author | Marcel Moolenaar <marcel@FreeBSD.org> | 2009-03-22 02:51:50 +0800 |
---|---|---|
committer | Marcel Moolenaar <marcel@FreeBSD.org> | 2009-03-22 02:51:50 +0800 |
commit | e4c49b72da9ad6453d1421ca4c2e13d3d790e2d8 (patch) | |
tree | 1e328e5d42b29fb87f23fb43aa0006b0e005b507 /www/firefox-esr | |
parent | 237ee5639fe95e58fb18d7d55b6e8f495ae58d3a (diff) | |
download | freebsd-ports-gnome-e4c49b72da9ad6453d1421ca4c2e13d3d790e2d8.tar.gz freebsd-ports-gnome-e4c49b72da9ad6453d1421ca4c2e13d3d790e2d8.tar.zst freebsd-ports-gnome-e4c49b72da9ad6453d1421ca4c2e13d3d790e2d8.zip |
grep for 'pthread:' in the compiler's spec file to avoid matching
random references of 'pthread'. On powerpc the mfwrap production
mentions "pthread_create", which matched the RE.
Ok'd by: marcus (thanks!)
Diffstat (limited to 'www/firefox-esr')
-rw-r--r-- | www/firefox-esr/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/www/firefox-esr/Makefile b/www/firefox-esr/Makefile index 767a533671dc..98a2ca68ad91 100644 --- a/www/firefox-esr/Makefile +++ b/www/firefox-esr/Makefile @@ -51,7 +51,7 @@ OPTIONS= NEWTAB "Open external links in a new tab" on \ .include <bsd.port.pre.mk> -GECKO_PTHREAD_LIBS!=${CC} -dumpspecs | ${GREP} -m 1 pthread | ${SED} -e 's|^.*%{\!pg: %{pthread:|| ; s|}.*$$||' || ${TRUE} +GECKO_PTHREAD_LIBS!=${CC} -dumpspecs | ${GREP} -m 1 pthread: | ${SED} -e 's|^.*%{\!pg: %{pthread:|| ; s|}.*$$||' || ${TRUE} .if ${HAVE_GNOME:Mlibgnomeui}!="" USE_GNOME+= libgnomeui |