projects
/
openwrt.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4a04571
)
fix shell return status of the find symlink command
author
nbd
<nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Wed, 3 Sep 2008 13:25:26 +0000
(13:25 +0000)
committer
nbd
<nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Wed, 3 Sep 2008 13:25:26 +0000
(13:25 +0000)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@12514
3c298f89
-4303-0410-b956-
a3cf2f4a3e73
tools/Makefile
patch
|
blob
|
history
diff --git
a/tools/Makefile
b/tools/Makefile
index
e15f061
..
ecde119
100644
(file)
--- a/
tools/Makefile
+++ b/
tools/Makefile
@@
-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)
This page took
0.020544 seconds
and
4
git commands to generate.