Package: python-xmpp Version: 0.3.1-1.1 In debian/rules "declare -x" is used, which is specific to Bash.
As far as I can see, this can be fixed by using "export" instead. The bug has been reported in Ubuntu (https://bugs.launchpad.net/bugs/137831). The patch to fix this is attached.
diff -u python-xmpp-0.3.1/debian/rules python-xmpp-0.3.1/debian/rules --- python-xmpp-0.3.1/debian/rules +++ python-xmpp-0.3.1/debian/rules @@ -57,7 +57,7 @@ set -e; \ for v in $(PYVERSIONS); do \ mkdir -p debian/python-xmpp/usr/lib/$$v/site-packages/xmpp; \ - declare -x MODULESDIR=$(CURDIR)/debian/python-xmpp/usr/lib/$$v/site-packages/ ; make install; \ + export MODULESDIR=$(CURDIR)/debian/python-xmpp/usr/lib/$$v/site-packages/ ; make install; \ done
signature.asc
Description: This is a digitally signed message part.

