diff options
author | Felix Fietkau <nbd@openwrt.org> | 2007-07-16 06:35:00 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2007-07-16 06:35:00 +0000 |
commit | 2809e403d6246076eb3f884c9137a3269a027e39 (patch) | |
tree | 0e309b1cb19f69de6c70887a34006eb485feb1bc /include/scan.mk | |
parent | 497e7253cd60e276f192b4e2647c564c77cad8b4 (diff) | |
download | upstream-2809e403d6246076eb3f884c9137a3269a027e39.tar.gz upstream-2809e403d6246076eb3f884c9137a3269a027e39.tar.bz2 upstream-2809e403d6246076eb3f884c9137a3269a027e39.zip |
find: use -follow instead of -L, some systems don't support -L
SVN-Revision: 8000
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 a0ee1ad678..04add4016c 100644 --- a/include/scan.mk +++ b/include/scan.mk @@ -31,7 +31,7 @@ endef $(FILELIST): rm -f tmp/info/.files-$(SCAN_TARGET)-* - find -L $(SCAN_DIR) $(SCAN_EXTRA) -mindepth 1 $(if $(SCAN_DEPTH),-maxdepth $(SCAN_DEPTH)) -name Makefile | xargs grep -HE 'call (Build/DefaultTargets|KernelPackage|Build(Package|Kernel))' | sed -e 's#^$(SCAN_DIR)/##' -e 's#/Makefile:.*##' | uniq > $@ + find -follow $(SCAN_DIR) $(SCAN_EXTRA) -mindepth 1 $(if $(SCAN_DEPTH),-maxdepth $(SCAN_DEPTH)) -name Makefile | xargs grep -HE 'call (Build/DefaultTargets|KernelPackage|Build(Package|Kernel))' | sed -e 's#^$(SCAN_DIR)/##' -e 's#/Makefile:.*##' | uniq > $@ tmp/info/.files-$(SCAN_TARGET).mk: $(FILELIST) ( \ |