diff options
author | Felix Fietkau <nbd@nbd.name> | 2017-02-20 13:03:49 +0100 |
---|---|---|
committer | Felix Fietkau <nbd@nbd.name> | 2017-02-26 13:31:44 +0100 |
commit | be206eba3a57128695a00f490767e5c136e43ab7 (patch) | |
tree | 277e7d882d7563e0001f7857a95fe74c40ecfc1e /include/scan.mk | |
parent | ffa9f3d74b777be78581f04811ff8df1699c6337 (diff) | |
download | upstream-be206eba3a57128695a00f490767e5c136e43ab7.tar.gz upstream-be206eba3a57128695a00f490767e5c136e43ab7.tar.bz2 upstream-be206eba3a57128695a00f490767e5c136e43ab7.zip |
build: get rid of FIND_L from host.mk
This was added for Mac OS X many years ago, but recent versions also
support find -L
Signed-off-by: Felix Fietkau <nbd@nbd.name>
Diffstat (limited to 'include/scan.mk')
-rw-r--r-- | include/scan.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/scan.mk b/include/scan.mk index 3a884fb5f5..92f2dc3f93 100644 --- a/include/scan.mk +++ b/include/scan.mk @@ -56,7 +56,7 @@ endif $(FILELIST): $(OVERRIDELIST) rm -f $(TMP_DIR)/info/.files-$(SCAN_TARGET)-* - $(call FIND_L, $(SCAN_DIR)) $(SCAN_EXTRA) -mindepth 1 $(if $(SCAN_DEPTH),-maxdepth $(SCAN_DEPTH)) -name Makefile | xargs grep -aHE 'call $(GREP_STRING)' | sed -e 's#^$(SCAN_DIR)/##' -e 's#/Makefile:.*##' | uniq | awk -v of=$(OVERRIDELIST) -f include/scan.awk > $@ + find -L $(SCAN_DIR) $(SCAN_EXTRA) -mindepth 1 $(if $(SCAN_DEPTH),-maxdepth $(SCAN_DEPTH)) -name Makefile | xargs grep -aHE 'call $(GREP_STRING)' | sed -e 's#^$(SCAN_DIR)/##' -e 's#/Makefile:.*##' | uniq | awk -v of=$(OVERRIDELIST) -f include/scan.awk > $@ $(TMP_DIR)/info/.files-$(SCAN_TARGET).mk: $(FILELIST) ( \ |