]> www.infradead.org Git - mtd-utils.git/commitdiff
Makefile: fixup previous 'make clean' fix
authorBrian Norris <computersforpeace@gmail.com>
Wed, 28 Mar 2012 23:59:06 +0000 (16:59 -0700)
committerArtem Bityutskiy <artem.bityutskiy@linux.intel.com>
Mon, 2 Apr 2012 08:09:25 +0000 (11:09 +0300)
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 <computersforpeace@gmail.com>
Acked-by: Mike Frysinger <vapier@gentoo.org>
Signed-off-by: Artem Bityutskiy <artem.bityutskiy@linux.intel.com>
Makefile

index 7506ed49d25dad7469c815ac8c75247469702106..40cb67639f29185f8e05408d706484a5dbfd8d11 100644 (file)
--- 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 {} \; ; \