diff options
author | 2010-07-25 19:06:36 +0000 | |
---|---|---|
committer | 2010-07-25 19:06:36 +0000 | |
commit | 7bfb49d586515158bd268170004db0c5cf3477d7 (patch) | |
tree | 410f67ce4a20fee958aa3a43c5c4121d34436173 /www-client/firefox/files/xulrunner-1.9.2-arm-fixes.patch | |
parent | Add ewarn about wrong permissions when upgrading from bind 9.4.x. Comment vie... (diff) | |
download | gentoo-2-7bfb49d586515158bd268170004db0c5cf3477d7.tar.gz gentoo-2-7bfb49d586515158bd268170004db0c5cf3477d7.tar.bz2 gentoo-2-7bfb49d586515158bd268170004db0c5cf3477d7.zip |
pkgmove from mozilla-firefox -> firefox
(Portage version: 2.1.8.3/cvs/Linux i686, RepoMan options: --force)
Diffstat (limited to 'www-client/firefox/files/xulrunner-1.9.2-arm-fixes.patch')
-rw-r--r-- | www-client/firefox/files/xulrunner-1.9.2-arm-fixes.patch | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/www-client/firefox/files/xulrunner-1.9.2-arm-fixes.patch b/www-client/firefox/files/xulrunner-1.9.2-arm-fixes.patch new file mode 100644 index 000000000000..a726209e6373 --- /dev/null +++ b/www-client/firefox/files/xulrunner-1.9.2-arm-fixes.patch @@ -0,0 +1,35 @@ +Fix arm OS detection + +https://bugs.gentoo.org/327783 +https://bugzilla.mozilla.org/show_bug.cgi?id=577319 +--- +--- configure.in ++++ configure.in +@@ -1424,9 +1424,11 @@ + CPU_ARCH="$OS_TEST" + ;; + +-arm) ++arm*) + if test "$OS_TARGET" = "WINCE"; then + CPU_ARCH="$OS_TEST" ++ else ++ CPU_ARCH="arm" + fi + ;; + esac +--- js/src/configure.in ++++ js/src/configure.in +@@ -1162,9 +1162,11 @@ + CPU_ARCH="$OS_TEST" + ;; + +-arm) ++arm*) + if test "$OS_TARGET" = "WINCE"; then + CPU_ARCH="$OS_TEST" ++ else ++ CPU_ARCH="arm" + fi + ;; + esac |