you've got the same issue in your Makefile, btw. with modern findutils, the current debhelper code generates a package with only /usr/bin/dh.
[skynet](0) $ cat 0001-fix-another-find-issue-in-the-makefile-for-debhelper.patch >From 6cf13f2f2fbdbf80db8400f322a436a9dace15b5 Mon Sep 17 00:00:00 2001 From: nick black <[email protected]> Date: Sat, 9 Feb 2013 16:22:44 -0500 Subject: [PATCH] fix another find issue in the makefile for debhelper --- packaging/debhelper/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packaging/debhelper/Makefile b/packaging/debhelper/Makefile index 38f3c15..f2990a5 100644 --- a/packaging/debhelper/Makefile +++ b/packaging/debhelper/Makefile @@ -1,5 +1,5 @@ # List of files of dh_* commands. Sorted for debhelper man page. -COMMANDS=$(shell find . -maxdepth 1 -type f -perm +100 -name "dh_*" -printf "%f\n" | sort) +COMMANDS=$(shell find . -maxdepth 1 -type f -perm /100 -name "dh_*" -printf "%f\n" | sort) # Find deprecated commands by looking at their synopsis. DEPRECATED=$(shell egrep -l '^dh_.* - .*deprecated' $(COMMANDS)) -- 1.8.1.2 [skynet](0) $ -- To UNSUBSCRIBE, email to [email protected] with a subject of "unsubscribe". Trouble? Contact [email protected]

