tags 831951 + patch
thanks
This happens because debian/rules has its binary-arch and binary-indep
targets swapped.
The following trivial (but untested) patch might fix it.
Thanks.
--- a/debian/rules
+++ b/debian/rules
@@ -62,12 +62,12 @@ install: build
cp -v -r Exceptions $(CURDIR)/debian/g2p-sk/usr/share/g2p_sk/
cp -v g2p-sk $(CURDIR)/debian/g2p-sk/usr/bin/
-# Build architecture-independent files here.
-binary-indep: build install
+# Build architecture-dependent files here.
+binary-arch:
# We have nothing to do by default.
-# Build architecture-dependent files here.
-binary-arch: build install
+# Build architecture-independent files here.
+binary-indep: build install
dh_testdir
dh_testroot
dh_installchangelogs