From: Brian Norris Date: Wed, 28 Mar 2012 23:59:06 +0000 (-0700) Subject: Makefile: fixup previous 'make clean' fix X-Git-Tag: v1.5.0~2 X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=d970b4850204553b8cc3bcba6d7219945b15d67c;p=mtd-utils.git Makefile: fixup previous 'make clean' fix Apparently, Makefile comments need to be made without indentation. Otherwise, they are printed out as shell commands. This fix prevents seeing this in your shell during 'make clean': $ make clean ... # findutils v4.1.x (RHEL 4) do not have '+' syntax ... Signed-off-by: Brian Norris Acked-by: Mike Frysinger Signed-off-by: Artem Bityutskiy --- diff --git a/Makefile b/Makefile index 7506ed4..40cb676 100644 --- a/Makefile +++ b/Makefile @@ -52,7 +52,7 @@ ifneq ($(BUILDDIR),$(CURDIR)) endif endif endif - # findutils v4.1.x (RHEL 4) do not have '+' syntax +# findutils v4.1.x (RHEL 4) do not have '+' syntax @if test -d "$(BUILDDIR)/"; then \ $(CLEAN_FIND) -exec rm -f {} + 2> /dev/null || \ $(CLEAN_FIND) -exec rm -f {} \; ; \