X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fsvn-archive%2Farchive.git;a=blobdiff_plain;f=tools%2FMakefile;h=48cfbbcc5f93a613fe64fd1716ddb75af0d95a4c;hp=4fe91f665a1396308717d8a9e5bd6a5096668d9b;hb=39893d45834fa8fb9f8fb6cf9391d8be5232904f;hpb=be6f5990872f2acfc2bcab2904d8ef5143207abe diff --git a/tools/Makefile b/tools/Makefile index 4fe91f665a..48cfbbcc5f 100644 --- a/tools/Makefile +++ b/tools/Makefile @@ -101,10 +101,19 @@ $(STAGING_DIR_HOST)/bin/$(1): $(STAGING_DIR)/.prepared endef 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,md5sum,md5sum $(SCRIPT_DIR)/md5sum)) $(eval $(call PrepareCommand,cp,gcp cp)) -$(eval $(call PrepareCommand,stat,gstat stat)) $(eval $(call PrepareCommand,seq,gseq seq)) $(curdir)/cmddeps = $(patsubst %,$(STAGING_DIR_HOST)/bin/%,find md5sum cp stat seq)