diff options
author | flo <flo@FreeBSD.org> | 2013-11-02 07:16:27 +0800 |
---|---|---|
committer | flo <flo@FreeBSD.org> | 2013-11-02 07:16:27 +0800 |
commit | d1f161bccaee83cb6751e2670244528991a0bb73 (patch) | |
tree | 189420f3bf6e665b7c9746e13b52711ea41a39cc /www/firefox | |
parent | 91c8143094bb75c3059e2f10bff2642cedb1cc70 (diff) | |
download | freebsd-ports-gnome-d1f161bccaee83cb6751e2670244528991a0bb73.tar.gz freebsd-ports-gnome-d1f161bccaee83cb6751e2670244528991a0bb73.tar.zst freebsd-ports-gnome-d1f161bccaee83cb6751e2670244528991a0bb73.zip |
The previous commit fixed one mismerge and introduced another. Put a needed
check for i386 on 9.x back in.
Pointhat to: flo
Diffstat (limited to 'www/firefox')
-rw-r--r-- | www/firefox/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/www/firefox/Makefile b/www/firefox/Makefile index 16b8cff1af3d..85156ec1fd6b 100644 --- a/www/firefox/Makefile +++ b/www/firefox/Makefile @@ -53,6 +53,10 @@ MOZ_OPTIONS= --program-transform-name='s/firefox/${MOZILLA}/' \ WRKSRC:= ${WRKDIR}/mozilla-release +.if ${ARCH} == i386 && ${OSVERSION} < 1000000 +USE_GCC?= yes +.endif + post-extract: @${SED} -e 's|@FIREFOX_ICON@|${FIREFOX_ICON}|' -e 's|@MOZILLA@|${MOZILLA}|' \ -e 's|@MOZILLA_NAME@|${MOZILLA_NAME}|' \ |