aboutsummaryrefslogtreecommitdiff
path: root/binary_tarball
diff options
context:
space:
mode:
authorohfp <1813007-ohfp@users.noreply.gitlab.com>2020-03-30 23:21:01 +0200
committerohfp <1813007-ohfp@users.noreply.gitlab.com>2020-03-30 23:21:01 +0200
commit046c27552bf53e3a9d9c41627078266eeab0086c (patch)
tree4ee10e4b1053231a1007b53e225b9f18f20d9a31 /binary_tarball
parentcheckout submodules globally (diff)
downloadlibrewolf-linux-046c27552bf53e3a9d9c41627078266eeab0086c.tar.gz
librewolf-linux-046c27552bf53e3a9d9c41627078266eeab0086c.tar.bz2
librewolf-linux-046c27552bf53e3a9d9c41627078266eeab0086c.zip
comment some ubuntu-specific options; fix flatpak json talk-variable
Diffstat (limited to 'binary_tarball')
-rwxr-xr-xbinary_tarball/scripts/3_Configure_Source_Code.sh1
-rwxr-xr-xbinary_tarball/scripts/4_Build_Binary_Tarball.sh1
2 files changed, 2 insertions, 0 deletions
diff --git a/binary_tarball/scripts/3_Configure_Source_Code.sh b/binary_tarball/scripts/3_Configure_Source_Code.sh
index 5cfaf41..df98c85 100755
--- a/binary_tarball/scripts/3_Configure_Source_Code.sh
+++ b/binary_tarball/scripts/3_Configure_Source_Code.sh
@@ -105,6 +105,7 @@ END
else
cat >>${CI_PROJECT_DIR}/mozconfig <<END
+# ubuntu seems to recommend this
ac_add_options --disable-elf-hack
END
diff --git a/binary_tarball/scripts/4_Build_Binary_Tarball.sh b/binary_tarball/scripts/4_Build_Binary_Tarball.sh
index 6f4aa22..755bb1a 100755
--- a/binary_tarball/scripts/4_Build_Binary_Tarball.sh
+++ b/binary_tarball/scripts/4_Build_Binary_Tarball.sh
@@ -69,6 +69,7 @@ END
else
cat >.mozconfig ${CI_PROJECT_DIR}/mozconfig - <<END
+# seems to mess with the libstdc++-static patch
# ac_add_options --enable-linker=gold
END
bgstack15