mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-27 18:35:55 +02:00
tools: fix GNU stat detection to prevent it from picking up other things named "gstat" (see #4571)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@31059 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
322039038f
commit
bdd85a2ede
@ -101,10 +101,19 @@ $(STAGING_DIR_HOST)/bin/$(1): $(STAGING_DIR)/.prepared
|
|||||||
endef
|
endef
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
$(STAGING_DIR_HOST)/bin/stat: $(STAGING_DIR)/.prepared
|
||||||
|
@if stat --version > /dev/null 2>&1; then \
|
||||||
|
ln -s `which stat` $@; \
|
||||||
|
elif gstat --version > /dev/null 2>&1; then \
|
||||||
|
ln -s `which gstat` $@; \
|
||||||
|
else \
|
||||||
|
echo "GNU stat not found"; \
|
||||||
|
false; \
|
||||||
|
fi
|
||||||
|
|
||||||
$(eval $(call PrepareCommand,find,gfind find))
|
$(eval $(call PrepareCommand,find,gfind find))
|
||||||
$(eval $(call PrepareCommand,md5sum,md5sum $(SCRIPT_DIR)/md5sum))
|
$(eval $(call PrepareCommand,md5sum,md5sum $(SCRIPT_DIR)/md5sum))
|
||||||
$(eval $(call PrepareCommand,cp,gcp cp))
|
$(eval $(call PrepareCommand,cp,gcp cp))
|
||||||
$(eval $(call PrepareCommand,stat,gstat stat))
|
|
||||||
$(eval $(call PrepareCommand,seq,gseq seq))
|
$(eval $(call PrepareCommand,seq,gseq seq))
|
||||||
|
|
||||||
$(curdir)/cmddeps = $(patsubst %,$(STAGING_DIR_HOST)/bin/%,find md5sum cp stat seq)
|
$(curdir)/cmddeps = $(patsubst %,$(STAGING_DIR_HOST)/bin/%,find md5sum cp stat seq)
|
||||||
|
Loading…
Reference in New Issue
Block a user