aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorohfp <1813007-ohfp@users.noreply.gitlab.com>2020-03-29 00:38:17 +0100
committerohfp <1813007-ohfp@users.noreply.gitlab.com>2020-03-29 00:38:17 +0100
commit8e1b87d40033325b8bf7214255ac23c1b4407466 (patch)
tree4319f690e8f097f8d103e92cd8f7dfdc7a014a4a
parentbootstrap recreates mozconfig, it seems (diff)
downloadlibrewolf-linux-8e1b87d40033325b8bf7214255ac23c1b4407466.tar.gz
librewolf-linux-8e1b87d40033325b8bf7214255ac23c1b4407466.tar.bz2
librewolf-linux-8e1b87d40033325b8bf7214255ac23c1b4407466.zip
mozconfig path is elsewhere
-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 dfbb28a..892d4f7 100755
--- a/binary_tarball/scripts/4_Build_Binary_Tarball.sh
+++ b/binary_tarball/scripts/4_Build_Binary_Tarball.sh
@@ -28,8 +28,7 @@ cd $srcdir;
printf "\nRunning bootstrapper to install build dependencies (using ./mach script within source code)\n";
./mach bootstrap --application-choice=browser --no-interactive;
-# deleting it earlier breaks because bootstrap seems to create a new one
-rm -f common/source_files/mozconfig
+rm -f mozconfig
# Do 3-tier PGO
echo "Building instrumented browser..."
bgstack15