tags 831949 + 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
@@ -39,12 +39,12 @@ install: build
install -m 644 viewer.tcl `pwd`/debian/ewipe/usr/lib/ewipe
install -m 644 tclIndex `pwd`/debian/ewipe/usr/lib/ewipe
-# 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_testversion
dh_testdir
dh_testroot