summaryrefslogtreecommitdiff
path: root/debian/rules
diff options
context:
space:
mode:
authorSylvain Thénault <sylvain.thenault@logilab.fr>2009-03-24 15:14:25 +0100
committerSylvain Thénault <sylvain.thenault@logilab.fr>2009-03-24 15:14:25 +0100
commit7433d82a66de2ae537061c7393fbf15cf5171e86 (patch)
treea45c925b13346f9eb8d66be8ff80778e5d15de1f /debian/rules
parent518ddb62ba15b41da022f3827df1c8f39308a34f (diff)
downloadastroid-git-7433d82a66de2ae537061c7393fbf15cf5171e86.tar.gz
setuptools fix
Diffstat (limited to 'debian/rules')
-rwxr-xr-xdebian/rules6
1 files changed, 3 insertions, 3 deletions
diff --git a/debian/rules b/debian/rules
index ea2fae83..5efafb01 100755
--- a/debian/rules
+++ b/debian/rules
@@ -15,7 +15,7 @@ build: build-stamp
build-stamp:
dh_testdir
- python setup.py -q build
+ NO_SETUPTOOLS=1 python setup.py -q build
touch build-stamp
@@ -23,7 +23,7 @@ clean:
dh_testdir
dh_testroot
- python setup.py clean
+ NO_SETUPTOOLS=1 python setup.py clean
find . -name "*.pyc" -delete
@@ -35,7 +35,7 @@ install: build
dh_clean -k
dh_installdirs
- python setup.py -q install --no-compile --prefix=debian/python-logilab-astng/usr/
+ NO_SETUPTOOLS=1 python setup.py -q install --no-compile --prefix=debian/python-logilab-astng/usr/
# remove sub-package __init__ file (created in postinst)
rm debian/python-logilab-astng/usr/lib/python*/site-packages/logilab/__init__.py