diff options
-rw-r--r-- | palemoon/debian/changelog | 6 | ||||
-rw-r--r-- | palemoon/debian/control | 2 | ||||
-rwxr-xr-x | palemoon/debian/rules | 10 |
3 files changed, 17 insertions, 1 deletions
diff --git a/palemoon/debian/changelog b/palemoon/debian/changelog index 4c04927..eadb898 100644 --- a/palemoon/debian/changelog +++ b/palemoon/debian/changelog @@ -1,3 +1,9 @@ +palemoon (28.6.1-3+devuan) obs; urgency=medium + + * Specify gcc-8 on debian buster which is the upstream for beowulf/ceres. + + -- B Stack <bgstack15@gmail.com> Thu, 25 Jul 2019 13:03:15 -0400 + palemoon (28.6.1-2+devuan) obs; urgency=medium * Add override for dh_strip_nondeterminism to address build failures with the diff --git a/palemoon/debian/control b/palemoon/debian/control index eca609c..77889b3 100644 --- a/palemoon/debian/control +++ b/palemoon/debian/control @@ -6,7 +6,7 @@ Bugs: mailto: <bgstack15@gmail.com> XSBC-Original-Maintainer: Steven Pusser <stevep@mxlinux.org> Build-Depends: autoconf2.13, debhelper (>= 9), - gcc (>= 4.9), + gcc-8, g++-8, cpp-8, libasound2-dev, libbz2-dev, libdbus-glib-1-dev (>= 0.60), diff --git a/palemoon/debian/rules b/palemoon/debian/rules index 2a74bf0..b56d4f7 100755 --- a/palemoon/debian/rules +++ b/palemoon/debian/rules @@ -2,6 +2,16 @@ export SHELL=/bin/bash +# borrowed from stevepusser's logic +# Build with gcc-8 on Buster (beowulf/ceres) +distrelease := $(shell lsb_release -cs) +ifeq ($(distrelease),$(filter $(distrelease),buster beowulf/ceres)) +export CC=gcc-8 +export CXX=g++-8 +export CPP=cpp-8 +export LD=gcc-8 +endif + %: dh $@ |