firefox: Workaround for building on i686-linux

http://hydra.nixos.org/build/13992569

+2 -1
+2 -1
pkgs/applications/networking/browsers/firefox/default.nix
··· 66 ] 67 ++ (if debugBuild then [ "--enable-debug" "--enable-profiling"] 68 else [ "--disable-debug" "--enable-release" 69 - "--enable-optimize" "--enable-strip" ]) 70 ++ lib.optional enableOfficialBranding "--enable-official-branding"; 71 72 enableParallelBuilding = true;
··· 66 ] 67 ++ (if debugBuild then [ "--enable-debug" "--enable-profiling"] 68 else [ "--disable-debug" "--enable-release" 69 + "--enable-optimize${lib.optionalString (stdenv.system == "i686-linux") "=-O1"}" 70 + "--enable-strip" ]) 71 ++ lib.optional enableOfficialBranding "--enable-official-branding"; 72 73 enableParallelBuilding = true;