summaryrefslogtreecommitdiff
path: root/palemoon
diff options
context:
space:
mode:
authorB Stack <bgstack15@gmail.com>2020-07-26 20:02:14 -0400
committerB Stack <bgstack15@gmail.com>2020-07-26 20:02:14 -0400
commit636b72557da275708a65d32cf9d30acfcd89c485 (patch)
tree83594e1cfc9823e3dc09f8223c28536c9dd4714f /palemoon
parenttry export MOZCONFIG in d/rules (diff)
downloadstackrpms-636b72557da275708a65d32cf9d30acfcd89c485.tar.gz
stackrpms-636b72557da275708a65d32cf9d30acfcd89c485.tar.bz2
stackrpms-636b72557da275708a65d32cf9d30acfcd89c485.zip
use dh_auto_configure for MCFILE
Diffstat (limited to 'palemoon')
-rwxr-xr-xpalemoon/debian/rules7
1 files changed, 5 insertions, 2 deletions
diff --git a/palemoon/debian/rules b/palemoon/debian/rules
index 0a5c388..2efbbcf 100755
--- a/palemoon/debian/rules
+++ b/palemoon/debian/rules
@@ -13,10 +13,10 @@ export SHELL=/bin/bash
#export LD=gcc-8
#endif
-export MOZCONFIG=debian/mozconfig
+export MCFILE=debian/mozconfig
distrelease := $(shell lsb_release -cs)
ifeq ($(distrelease),$(filter $(distrelease),sid unstable ceres))
-export MOZCONFIG=debian/mozconfig-unstable
+export MCFILE=debian/mozconfig-unstable
endif
%:
@@ -27,6 +27,9 @@ override_dh_auto_clean:
dh_auto_clean
find . -name '*.pyc' -delete
+override_dh_auto_configure:
+ cp ${MCFILE} mozconfig
+
override_dh_auto_build:
make -f client.mk build
bgstack15