Source: honeyd
Version: 1.5c-10
User: debian-pyt...@lists.debian.org
Usertags: no-byte-compile
Tags: patch

honeyd passes a non-existent directory to dh_python2, turning the command into no-op. As a result, private Python modules included in the package are not byte-compiled. Patch attached.

--
Jakub Wilk
--- honeyd-1.5c/debian/rules	2013-04-22 21:28:37.000000000 +0200
+++ honeyd-1.5c/debian/rules	2013-04-22 21:28:39.000000000 +0200
@@ -145,7 +145,7 @@
 	dh_installman -a
 #	dh_undocumented -a
 	dh_installchangelogs -a
-	dh_python2 -a $(CURDIR)/debian/tmp/usr/share/honeyd/webserver
+	dh_python2 -a /usr/share/honeyd/webserver
 	dh_link -a
 	dh_strip -a
 	dh_compress -a

Reply via email to