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/host.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/host.mk')
-rw-r--r-- | include/host.mk | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/include/host.mk b/include/host.mk index ec3ae276a4..2ccab8e1e6 100644 --- a/include/host.mk +++ b/include/host.mk @@ -41,11 +41,6 @@ $(TMP_DIR)/.host.mk: $(TOPDIR)/include/host.mk echo "HOST_OS:=$$HOST_OS" > $@; \ echo "HOST_ARCH:=$$HOST_ARCH" >> $@; \ echo "GNU_HOST_NAME:=$$GNU_HOST_NAME" >> $@; \ - if gfind -L /dev/null || find -L /dev/null; then \ - echo "FIND_L=find -L \$$(1)" >> $@; \ - else \ - echo "FIND_L=find \$$(1) -follow" >> $@; \ - fi \ ) >/dev/null 2>/dev/null endif |