aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorBrian Norris <computersforpeace@gmail.com>2012-03-28 16:59:06 -0700
committerArtem Bityutskiy <artem.bityutskiy@linux.intel.com>2012-04-02 11:09:25 +0300
commitd970b4850204553b8cc3bcba6d7219945b15d67c (patch)
treeb4119a6b26393c732ed575e978e7a559c96aaf9b /Makefile
parent424050cf57f797d635059b18ba6b8591c3fc126f (diff)
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 <computersforpeace@gmail.com> Acked-by: Mike Frysinger <vapier@gentoo.org> Signed-off-by: Artem Bityutskiy <artem.bityutskiy@linux.intel.com>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
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 {} \; ; \