From 636b72557da275708a65d32cf9d30acfcd89c485 Mon Sep 17 00:00:00 2001 From: B Stack Date: Sun, 26 Jul 2020 20:02:14 -0400 Subject: use dh_auto_configure for MCFILE --- palemoon/debian/rules | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'palemoon') 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 -- cgit