tags 831937 + patch
thanks

On Wed, 20 Jul 2016, Lucas Nussbaum wrote:

> make[1]: Entering directory '/<<PKGBUILDDIR>>'
> [ ! -d spyne.egg-info -o -d spyne.egg-info.orig ] || mv spyne.egg-info 
> spyne.egg-info.orig
> dh_auto_install -i-O-v-O--buildsystem=pybuild
> dh_auto_install: unknown option; aborting
> debian/rules:22: recipe for target 'override_dh_auto_install' failed
> make[1]: *** [override_dh_auto_install] Error 25

The funny chars are the result of using DH_INTERNAL_OPTIONS.

I don't know why are you using this internal variable, but without it
the package builds exactly the same, so I guess debhelper is clever
enough to know what it needs to be done.

Patch attached.
--- a/debian/rules
+++ b/debian/rules
@@ -20,7 +20,7 @@ override_dh_clean:
 
 override_dh_auto_install:
        [ ! -d spyne.egg-info -o -d spyne.egg-info.orig ] || mv spyne.egg-info 
spyne.egg-info.orig
-       dh_auto_install $(DH_INTERNAL_OPTIONS)
+       dh_auto_install
        # kill sort_wsdl
        rm -r debian/python-spyne/usr/bin
 

Reply via email to