tags 860692 patch thanks
Hi all, [...] > # Copy test files to build dir > cp pcap/*.pcap obj-i386-linux-gnu/src/github.com/google/gopacket/pcap/ > cp: target 'obj-i386-linux-gnu/src/github.com/google/gopacket/pcap/' is not a directory > debian/rules:19: recipe for target 'override_dh_auto_configure' failed > make[1]: *** [override_dh_auto_configure] Error 1 I have fixed this issue by constructing the target directory name using DEB_HOST_GNU_TYPE instead of DEB_HOST_MULTIARCH, which correctly yields 'obj-i686-linux-gnu'. After applying attached patch, I was able to correctly build gopacket on i386 stretch. Best regards Sascha
diff --git a/debian/rules b/debian/rules index a51674b..723de78 100755 --- a/debian/rules +++ b/debian/rules @@ -19,7 +19,7 @@ override_dh_auto_configure: dh_auto_configure rm -rf $(patsubst %,obj-*/src/$(DH_GOPKG)/%,$(NOBUILD)) # Copy test files to build dir - cp pcap/*.pcap obj-$(DEB_HOST_MULTIARCH)/src/$(DH_GOPKG)/pcap/ + cp pcap/*.pcap obj-$(DEB_HOST_GNU_TYPE)/src/$(DH_GOPKG)/pcap/ override_dh_install: dh_install --fail-missing
signature.asc
Description: OpenPGP digital signature