summaryrefslogtreecommitdiff
path: root/Debian
diff options
context:
space:
mode:
authorJoey Hess <joey@gnu.kitenet.net>2009-06-28 16:27:53 -0400
committerJoey Hess <joey@gnu.kitenet.net>2009-06-28 16:27:53 -0400
commit13e1de542d940506fdad6f14620131310bd8ec11 (patch)
tree3826ee89d20912718ebe349e97ca60cb9fada288 /Debian
parentaf351ff3d870c0559afd79fad0341f6a558e3900 (diff)
parent63a9ae5d8a3af3d8c707187fb7cb55d55533a7df (diff)
Merge branch 'master' into buildsystems
Conflicts: dh_auto_install
Diffstat (limited to 'Debian')
-rw-r--r--Debian/Debhelper/Buildsystem/python_distutils.pm7
1 files changed, 6 insertions, 1 deletions
diff --git a/Debian/Debhelper/Buildsystem/python_distutils.pm b/Debian/Debhelper/Buildsystem/python_distutils.pm
index 46f4c1c1..39a4466a 100644
--- a/Debian/Debhelper/Buildsystem/python_distutils.pm
+++ b/Debian/Debhelper/Buildsystem/python_distutils.pm
@@ -89,7 +89,12 @@ sub build {
sub install {
my $this=shift;
my $destdir=shift;
- $this->setup_py("install", "--root=$destdir", "--no-compile", "-O0", @_);
+ $this->setup_py("install",
+ "--root=$destdir",
+ "--no-compile",
+ "-O0",
+ "--install-layout=deb",
+ @_);
}
sub clean {