diff options
author | Joey Hess <joey@gnu.kitenet.net> | 2009-06-28 16:27:53 -0400 |
---|---|---|
committer | Joey Hess <joey@gnu.kitenet.net> | 2009-06-28 16:27:53 -0400 |
commit | 13e1de542d940506fdad6f14620131310bd8ec11 (patch) | |
tree | 3826ee89d20912718ebe349e97ca60cb9fada288 /Debian/Debhelper/Buildsystem | |
parent | af351ff3d870c0559afd79fad0341f6a558e3900 (diff) | |
parent | 63a9ae5d8a3af3d8c707187fb7cb55d55533a7df (diff) |
Merge branch 'master' into buildsystems
Conflicts:
dh_auto_install
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 46f4c1c..39a4466 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 { |