diff options
author | martin <martin@pkgsrc.org> | 2013-08-29 20:49:26 +0000 |
---|---|---|
committer | martin <martin@pkgsrc.org> | 2013-08-29 20:49:26 +0000 |
commit | 50cf2d9e5efca959f711c513bb18a09faa1653ee (patch) | |
tree | 88cd8ba8184cdb6d654fecc4193226503c429f93 /www/firefox | |
parent | bd0f0bec804fbf546338d46446f8ac380c290ee0 (diff) | |
download | pkgsrc-50cf2d9e5efca959f711c513bb18a09faa1653ee.tar.gz |
Fix endianess test
Diffstat (limited to 'www/firefox')
-rw-r--r-- | www/firefox/mozilla-common.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/www/firefox/mozilla-common.mk b/www/firefox/mozilla-common.mk index 29a1f2a87fd..53eb490f1d8 100644 --- a/www/firefox/mozilla-common.mk +++ b/www/firefox/mozilla-common.mk @@ -1,4 +1,4 @@ -# $NetBSD: mozilla-common.mk,v 1.13 2013/08/29 18:48:25 martin Exp $ +# $NetBSD: mozilla-common.mk,v 1.14 2013/08/29 20:49:26 martin Exp $ # # common Makefile fragment for mozilla packages based on gecko 2.0. # @@ -100,7 +100,7 @@ SUBST_SED.python+= -e 's,<!(python,<!(${PYTHONBIN},' PLIST_VARS+= sps vorbis tremor glskia throwwrapper -.if ${MACHINE_ENDIAN} == "1234" +.if ${MACHINE_ENDIAN} == "little" PLIST.glskia= yes .endif |