Changeset 7703
- Timestamp:
- Jul 10, 2018, 9:03:08 AM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
devtools/firefox_customizer/firefox_customizer.sh
r6468 r7703 71 71 mk_add_options MOZ_APP_DISPLAYNAME=${APPNAME} 72 72 " > mozconfig 73 if [ $BUILD_386 -eq 1]73 if [[ $BUILD_686 == 1 ]] 74 74 then 75 echo "##i 386 build###75 echo "##i686 build### 76 76 export PKG_CONFIG_PATH="/var/chroot/linux32/usr/lib/i386-linux-gnu/pkgconfig:/var/chroot/linux32/usr/share/pkgconfig" 77 77 export MOZ_LINUX_32_SSE2_STARTUP_ERROR=1 … … 124 124 echo " amd64" 125 125 printf "\tGenerates amd64 build\n" 126 echo " i 386"127 printf "\tGenerates i 386 build\n"126 echo " i686" 127 printf "\tGenerates i686 build\n" 128 128 exit 0 129 129 } … … 133 133 [ $# -eq 0 ] && help 134 134 135 if [[ $1 == "i 386" ]]135 if [[ $1 == "i686" ]] 136 136 then 137 BUILD_ 386=1137 BUILD_686=1 138 138 elif [[ $1 != "amd64" ]] 139 139 then … … 157 157 modify_confvars 158 158 set_branding 159 echo "Firefox sources are now configured" 160 echo "You could start the build by typing" 161 echo "./mach build &6 ./mach-package" 162 arch='x86_64' 163 if [[ $1 == 'i686' ]] 164 then 165 arch='i686' 166 fi 167 echo "When finished you must copy the content of \$BUILDDIR/obj-${arch}-pc-linux-gnu/dist/firefoxESR to the firefox-esr-${arch} folder of the svn"
Note: See TracChangeset
for help on using the changeset viewer.