aboutsummaryrefslogtreecommitdiff
path: root/binary_tarball/scripts/4_Build_Binary_Tarball.sh
diff options
context:
space:
mode:
authorohfp <1813007-ohfp@users.noreply.gitlab.com>2020-03-30 12:16:17 +0200
committerohfp <1813007-ohfp@users.noreply.gitlab.com>2020-03-30 12:16:17 +0200
commit2405b48f74618a7b8108d9a07e1dd683813ba2ac (patch)
tree9f7b3e268282e849fb8c25bab0aae8e4f50330fd /binary_tarball/scripts/4_Build_Binary_Tarball.sh
parentupdate .gitlab-ci.yml file/artifact naming; also add bzip2 to flatpak script (diff)
downloadlibrewolf-linux-2405b48f74618a7b8108d9a07e1dd683813ba2ac.tar.gz
librewolf-linux-2405b48f74618a7b8108d9a07e1dd683813ba2ac.tar.bz2
librewolf-linux-2405b48f74618a7b8108d9a07e1dd683813ba2ac.zip
we should probably strip binaries, to avoid getting a 1.6G libxul.so
Diffstat (limited to 'binary_tarball/scripts/4_Build_Binary_Tarball.sh')
-rwxr-xr-xbinary_tarball/scripts/4_Build_Binary_Tarball.sh3
1 files changed, 1 insertions, 2 deletions
diff --git a/binary_tarball/scripts/4_Build_Binary_Tarball.sh b/binary_tarball/scripts/4_Build_Binary_Tarball.sh
index 4beb4d5..31e7fb0 100755
--- a/binary_tarball/scripts/4_Build_Binary_Tarball.sh
+++ b/binary_tarball/scripts/4_Build_Binary_Tarball.sh
@@ -7,7 +7,7 @@ OUTPUT_TARBALL=$2;
CI_PROJECT_DIR=${CI_PROJECT_DIR:-$(realpath $(dirname $0)/../../)}
_SOURCE_CODE_BINARY_TARBALL_LOCATION="./obj*/dist/librewolf*.tar.bz2";
_MOZBUILD=$srcdir/../mozbuild
-export PATH=/usr/lib/nasm-mozilla/bin:$PATH
+# export PATH=/usr/lib/nasm-mozilla/bin:$PATH
# we do change / unset some of them later, but setting them as set by Arch
# might make it easier to maintain changes in build scripts on both sides
@@ -87,4 +87,3 @@ mv $_SOURCE_CODE_BINARY_TARBALL_LOCATION $OUTPUT_TARBALL;
# Deletes the source code
printf "\nDeleting source code\n";
rm -rf $srcdir;
-
bgstack15