From: Felix Fietkau Date: Thu, 19 Feb 2009 17:18:26 +0000 (+0000) Subject: prefer gstat over stat if available (patch from #4571) X-Git-Tag: v19.07.0-rc1~35097 X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=062456ec4c5ad06f29598e3332a2d26fc0391cb1;p=openwrt%2Fstaging%2Fhauke.git prefer gstat over stat if available (patch from #4571) SVN-Revision: 14568 --- diff --git a/tools/Makefile b/tools/Makefile index c5a9933448..c0bbcdbeea 100644 --- a/tools/Makefile +++ b/tools/Makefile @@ -39,8 +39,9 @@ endef $(eval $(call PrepareCommand,find,gfind find)) $(eval $(call PrepareCommand,md5sum,md5sum $(SCRIPT_DIR)/md5sum)) $(eval $(call PrepareCommand,cp,gcp cp)) +$(eval $(call PrepareCommand,stat,gstat stat)) -$(curdir)/cmddeps = $(patsubst %,$(STAGING_DIR_HOST)/bin/%,find md5sum cp) +$(curdir)/cmddeps = $(patsubst %,$(STAGING_DIR_HOST)/bin/%,find md5sum cp stat) $(curdir)//prepare = $(STAGING_DIR)/.prepared $($(curdir)/cmddeps) $(curdir)//compile = $(STAGING_DIR)/.prepared $($(curdir)/cmddeps)