summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 2319e3c..1ecfc40 100644
--- a/Makefile
+++ b/Makefile
@@ -102,7 +102,7 @@ $(KCONFIG):
CHECK_COMMAND = $(shell command -v $(BUILD_COMMAND) 2> /dev/null)
CHECK_SUBCMD = $(shell command -v $(BUILD_SUBCMD) 2> /dev/null)
-CHECK_FILES = $(shell find $(CURDIR) -name \*\.tex -exec grep -lP '\t' \{\} \;)
+CHECK_FILES = $(shell find $(CURDIR) -name '*.tex' -exec grep -lP '\t' '{}' ';')
PHONY += check
check: ;
@@ -144,7 +144,7 @@ mrproper: clean
PHONY += distclean
distclean: mrproper
$(Q)echo [CLEAN] $@
- $(Q)find -name "tmp*" -exec rm -f {} \;
+ $(Q)find -name 'tmp*' -exec rm -f '{}' ';'
%_defconfig: $(KCONFIG)
$(Q)cp $(DEFCONF_FOLDER)/$@ $(CONFIG_FILE)