The following commit has been merged in the master branch: commit 2f4a8bf99e49fb605bd584123f3cc0493b5a7bf7 Author: Sven Eckelmann sven@narfation.org Date: Sun Apr 3 22:34:19 2011 +0200
batmand: Fix FTBFS on second build attempt
make clean will try to remove all files and folders which end with *.d. This fails when using the Debian package script on the leftover package folder with etc/init.d included because the rm is not started in recursive deletion mode. This find can be replaced with a simpler statement without using its functionality.
Signed-off-by: Sven Eckelmann sven@narfation.org
diff --git a/Makefile b/Makefile index c9098a6..cb7c950 100644 --- a/Makefile +++ b/Makefile @@ -86,7 +86,7 @@ $(BINARY_NAME): $(SRC_O) $(SRC_H) Makefile
clean: rm -f $(BINARY_NAME) *.o posix/*.o linux/*.o bsd/*.o - rm -f `find . -name '*.d' -print` + rm -f *.d posix/*.d linux/*.d bsd/*.d
install: mkdir -p $(SBINDIR)