diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2006-05-21 08:25:45 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2006-05-21 08:25:45 +0000 |
commit | 1a5eb4682039099dec8d41cbdb6299023e15b4c2 (patch) | |
tree | 5d5858dab97602c14a235b3c7d2d5b5b049192b2 | |
parent | ef21629a6b23201c48bf5acad058420ea68984f0 (diff) | |
download | busybox-1a5eb4682039099dec8d41cbdb6299023e15b4c2.tar.gz |
- there is no "sh". Use $(SHELL)
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -419,7 +419,7 @@ scripts/usage: $(top_srcdir)/scripts/usage.c .config DEP_INCLUDES += include/usage_compressed.h include/usage_compressed.h: .config scripts/usage - $(Q)sh $(top_srcdir)/scripts/usage_compressed "$(top_srcdir)/scripts" > $@ + $(Q)$(SHELL) $(top_srcdir)/scripts/usage_compressed "$(top_srcdir)/scripts" > $@ depend dep: .depend .depend: scripts/bb_mkdep $(DEP_INCLUDES) |