From 9cfc2cd1213ab98d744b42bbfe3a4f8ca5e870ea Mon Sep 17 00:00:00 2001 From: Julian Andres Klode Date: Mon, 5 Jul 2010 18:22:37 +0200 Subject: Re-enable Python 3 support for latest python-default changes (hack). --- debian/rules | 2 ++ 1 file changed, 2 insertions(+) (limited to 'debian/rules') diff --git a/debian/rules b/debian/rules index a65c5cfd..e93d682f 100755 --- a/debian/rules +++ b/debian/rules @@ -3,6 +3,8 @@ export DH_PYCENTRAL=nomove export DEBVER=$(shell dpkg-parsechangelog | sed -n -e 's/^Version: //p') export CFLAGS=-Wno-write-strings -DCOMPAT_0_7 +export PATH :=$(CURDIR)/utils:$(PATH) +export SHELL=PATH=$(PATH) sh %: dh --with python-central $@ -- cgit v1.2.3 From dc7c1b076167d70b5c2f5c99c67160a0730814d5 Mon Sep 17 00:00:00 2001 From: Julian Andres Klode Date: Mon, 5 Jul 2010 18:25:58 +0200 Subject: rules: Fix SHELL override. --- debian/rules | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'debian/rules') diff --git a/debian/rules b/debian/rules index e93d682f..f7cca130 100755 --- a/debian/rules +++ b/debian/rules @@ -4,7 +4,7 @@ export DH_PYCENTRAL=nomove export DEBVER=$(shell dpkg-parsechangelog | sed -n -e 's/^Version: //p') export CFLAGS=-Wno-write-strings -DCOMPAT_0_7 export PATH :=$(CURDIR)/utils:$(PATH) -export SHELL=PATH=$(PATH) sh +export SHELL = env PATH=$(PATH) sh %: dh --with python-central $@ -- cgit v1.2.3