fix shell return status of the find symlink command

SVN-Revision: 12514
This commit is contained in:
Felix Fietkau 2008-09-03 13:25:26 +00:00
parent 3b937f85e8
commit c6736f006e
1 changed files with 3 additions and 1 deletions

View File

@ -38,7 +38,9 @@ $(STAGING_DIR_HOST)/bin/md5sum: $(STAGING_DIR)/.prepared
fi
$(STAGING_DIR_HOST)/bin/find: $(STAGING_DIR)/.prepared
[ -x "$(FIND)" -a "$(FIND)" != "$@" ] && ln -sf "$(FIND)" $@
if [ -x "$(FIND)" -a "$(FIND)" != "$@" ]; then \
ln -sf "$(FIND)" $@; \
fi
$(curdir)/cmddeps = $(patsubst %,$(STAGING_DIR_HOST)/bin/%,find md5sum)