aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorohfp <1813007-ohfp@users.noreply.gitlab.com>2020-03-30 15:34:15 +0200
committerohfp <1813007-ohfp@users.noreply.gitlab.com>2020-03-30 15:34:15 +0200
commitab0f7be852ed4957c2ee714fdbdb6e870d9500b0 (patch)
tree52e22d2c1a7e1ffee7c4fc0a337acb2935b559e0
parenttry build without explicit gold; fix flatpak json (diff)
downloadlibrewolf-linux-ab0f7be852ed4957c2ee714fdbdb6e870d9500b0.tar.gz
librewolf-linux-ab0f7be852ed4957c2ee714fdbdb6e870d9500b0.tar.bz2
librewolf-linux-ab0f7be852ed4957c2ee714fdbdb6e870d9500b0.zip
build PIE librewolf via hardening-wrapper
-rwxr-xr-xbinary_tarball/scripts/4_Build_Binary_Tarball.sh1
1 files changed, 1 insertions, 0 deletions
diff --git a/binary_tarball/scripts/4_Build_Binary_Tarball.sh b/binary_tarball/scripts/4_Build_Binary_Tarball.sh
index 202a0a9..43559ca 100755
--- a/binary_tarball/scripts/4_Build_Binary_Tarball.sh
+++ b/binary_tarball/scripts/4_Build_Binary_Tarball.sh
@@ -7,6 +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
+DEB_BUILD_HARDENING=1
# export PATH=/usr/lib/nasm-mozilla/bin:$PATH
# we do change / unset some of them later, but setting them as set by Arch
bgstack15