diff options
Diffstat (limited to 'Debian/Debhelper/Buildsystem')
-rw-r--r-- | Debian/Debhelper/Buildsystem/python_distutils.pm | 7 |
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 { |