diff options
author | Slávek Banko <slavek.banko@axis.cz> | 2013-08-27 04:57:39 +0200 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2013-08-27 05:00:17 +0200 |
commit | 2d0d0ba99b507cab093962cb910ddc7dd4755c94 (patch) | |
tree | 25732cac7c5450d1df2efe47d153253bec8a83be /ubuntu/raring/libraries/python-trinity/debian/rules | |
parent | e59f9132f600c669c73885b0b58a715e6bfd03a6 (diff) | |
download | tde-packaging-2d0d0ba99b507cab093962cb910ddc7dd4755c94.tar.gz tde-packaging-2d0d0ba99b507cab093962cb910ddc7dd4755c94.zip |
Switch to dh_python2 (or dh_pysupport as fallback) on Debian and Ubuntu
Diffstat (limited to 'ubuntu/raring/libraries/python-trinity/debian/rules')
-rwxr-xr-x | ubuntu/raring/libraries/python-trinity/debian/rules | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/ubuntu/raring/libraries/python-trinity/debian/rules b/ubuntu/raring/libraries/python-trinity/debian/rules index 67af8c2d8..d4dac70f3 100755 --- a/ubuntu/raring/libraries/python-trinity/debian/rules +++ b/ubuntu/raring/libraries/python-trinity/debian/rules @@ -31,6 +31,9 @@ endif PYTHONS := $(shell pyversions -vr debian/control) DBG_PYTHONS := $(shell pyversions -vd) +DEB_PYTHON_SYSTEM = $(if $(wildcard /usr/bin/dh_python2),,pysupport) +DH_PYTHON2 = $(if $(wildcard /usr/bin/dh_python2),dh_python2,dh_pysupport) + GCCVER := $(shell gcc --version | sed -n '/^gcc (GCC)/s/.*(GCC) \(...\).*/\1/p') ifneq (,$(filter $(GCCVER),4.2 4.3)) SPLIT=20 @@ -149,7 +152,7 @@ ifeq (,$(findstring -i, $(DH_OPTIONS))) endif dh_compress -X.py -X.ui -X.dtd dh_fixperms - DH_PYCENTRAL=nomove dh_pycentral + ${DH_PYTHON2} dh_installdeb dh_shlibdeps -l /opt/trinity/lib dh_gencontrol |