
commit 135215ca717149f294dc0ca5ffffc56fdf47deed Author: Mike Perry <mikeperry-git@torproject.org> Date: Tue Nov 12 10:52:28 2013 -0800 Bug 10126: Strip some additional binaries. Also fix a typo and add a missing directory. --- gitian/descriptors/linux/gitian-firefox.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gitian/descriptors/linux/gitian-firefox.yml b/gitian/descriptors/linux/gitian-firefox.yml index faf0aba..19e359f 100644 --- a/gitian/descriptors/linux/gitian-firefox.yml +++ b/gitian/descriptors/linux/gitian-firefox.yml @@ -56,7 +56,7 @@ script: | export PATH=$PATH:$INSTDIR/build/bin # mkdir -p $INSTDIR/Browser/ - mkdir -p $INSTDIR/Debug/Browser/ + mkdir -p $INSTDIR/Debug/Browser/components # # Fx 24 ESR does not work with Python < 2.7 anymore. But 10.04 does only ship # with Python 2.6. Thus, we compile 2.7 ourselves... @@ -91,10 +91,10 @@ script: | # But let's find out if it actually matters first.. rm -f $INSTDIR/Browser/*.chk # - # Strip and generate debuginfo for the firefix binary that we keep, all *.so + # Strip and generate debuginfo for the firefox binary that we keep, all *.so # files, and the plugin-container (see ticket #10126) cd $INSTDIR - for LIB in Browser/*.so Browser/firefox Browser/plugin-container Browser/components/*.so + for LIB in Browser/*.so Browser/webapprt-stub Browser/mozilla-xremote-client Browser/updater Browser/firefox Browser/plugin-container Browser/components/*.so do objcopy --only-keep-debug $LIB Debug/$LIB strip $LIB