diff options
author | Phil Blundell <philb@gnu.org> | 2004-08-03 13:12:13 +0000 |
---|---|---|
committer | Phil Blundell <philb@gnu.org> | 2004-08-03 13:12:13 +0000 |
commit | 0bdb2021204f3b4da133a8dfb6bd0694f1e608d1 (patch) | |
tree | 322e224fbf74e0b3fe53596f705547e6524059a9 /mozilla | |
parent | d41e781beb3fa8fe09a66bc1dc3411ece97f91de (diff) |
Merge bk://openembedded@openembedded.bkbits.net/packages
into stealth.(none):/home/pb/oe/oe-packages
2004/08/03 14:10:41+01:00 (none)!pb
Merge bk://openembedded@openembedded.bkbits.net/packages
into stealth.(none):/home/pb/oe/oe-packages
2004/08/03 14:10:27+01:00 (none)!pb
add extensions-hack and permission mangling
BKrev: 410f8f2d4ihAV1AFjbWyOFEMb7gQYA
Diffstat (limited to 'mozilla')
-rw-r--r-- | mozilla/firefox-0.9.2/extensions-hack.patch | 0 | ||||
-rw-r--r-- | mozilla/firefox_0.9.2.oe | 7 |
2 files changed, 5 insertions, 2 deletions
diff --git a/mozilla/firefox-0.9.2/extensions-hack.patch b/mozilla/firefox-0.9.2/extensions-hack.patch new file mode 100644 index 0000000000..e69de29bb2 --- /dev/null +++ b/mozilla/firefox-0.9.2/extensions-hack.patch diff --git a/mozilla/firefox_0.9.2.oe b/mozilla/firefox_0.9.2.oe index dd44bf99ec..14bba18b0f 100644 --- a/mozilla/firefox_0.9.2.oe +++ b/mozilla/firefox_0.9.2.oe @@ -1,10 +1,11 @@ DEPENDS = "xt xi zip-native gtk+ orbit2" -PR = "r4" +PR = "r8" SRC_URI = "http://ftp.mozilla.org/pub/mozilla.org/firefox/releases/${PV}/firefox-${PV}-source.tar.bz2 \ file://mozconfig \ file://xptcstubs.patch;patch=1 \ file://no-xmb.patch;patch=1 \ + file://extensions-hack.patch;patch=1 \ file://mozilla-firefox.png file://mozilla-firefox.desktop" S = "${WORKDIR}/mozilla" @@ -14,7 +15,7 @@ FILES_${PN} += "${libdir}/firefox-${PV} ${datadir}/idl" CFLAGS := "${@'${CFLAGS}'.replace('-frename-registers', '')} -fsigned-char -fno-strict-aliasing" CXXFLAGS := "${@'${CXXFLAGS}'.replace('-frename-registers', '')} -fsigned-char -fno-strict-aliasing" -#SELECTED_OPTIMIZATION = "-Os" +SELECTED_OPTIMIZATION = "-Os" export CROSS_COMPILE=1 export HOST_LIBIDL_CONFIG="libIDL-config-2" @@ -40,5 +41,7 @@ do_install() { install -d ${D}${datadir}/pixmaps install -m 0644 ${WORKDIR}/mozilla-firefox.desktop ${D}${datadir}/applications/ install -m 0644 ${WORKDIR}/mozilla-firefox.png ${D}${datadir}/pixmaps/ + # work around requirement for root access on first startup + chmod -R a+w ${D}${libdir}/firefox* } |