summaryrefslogtreecommitdiff
path: root/waterfox-g/debian/build.sh
diff options
context:
space:
mode:
authorB. Stack <bgstack15@gmail.com>2024-06-27 14:37:16 -0400
committerB. Stack <bgstack15@gmail.com>2024-06-27 14:37:16 -0400
commite85d214d9ad99217913b996b812e05feb01b1cb8 (patch)
treefcd2cdf103c8f3184525bfb4e7f70e2c6ba690f3 /waterfox-g/debian/build.sh
parentnotepadnext 0.8 (diff)
downloadstackrpms-e85d214d9ad99217913b996b812e05feb01b1cb8.tar.gz
stackrpms-e85d214d9ad99217913b996b812e05feb01b1cb8.tar.bz2
stackrpms-e85d214d9ad99217913b996b812e05feb01b1cb8.zip
waterfox-g 6.0.16
Diffstat (limited to 'waterfox-g/debian/build.sh')
-rwxr-xr-xwaterfox-g/debian/build.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/waterfox-g/debian/build.sh b/waterfox-g/debian/build.sh
index 99fc473..2674fbc 100755
--- a/waterfox-g/debian/build.sh
+++ b/waterfox-g/debian/build.sh
@@ -4,7 +4,6 @@
# without patching. Debhelper won't allow us to do that by same way and
# patching won't be much convenient, so we need to create new files.
mkdir -p "$(pwd)"/debian/app_version
-
cp "$(pwd)"/browser/config/version.txt "$(pwd)"/debian/app_version/version.txt
echo "$WF_VERSION" >"$(pwd)"/debian/app_version/version_display.txt
@@ -31,6 +30,7 @@ if test `lsb_release -sc` = "bionic" || test `lsb_release -sc` = "buster" || tes
export PATH=/usr/lib/llvm-15/bin/:$PATH
fi
+export XDG_RUNTIME_DIR=/run/user/$(id -u)
export CC=clang
export CXX=clang++
export AR=llvm-ar
bgstack15