summaryrefslogtreecommitdiff
path: root/obsolete-buildroot/make/binutils-uclibc.mk
diff options
context:
space:
mode:
authorMike Baker <mbm@openwrt.org>2004-08-17 23:00:52 +0000
committerMike Baker <mbm@openwrt.org>2004-08-17 23:00:52 +0000
commita9cbe76ba66ff7056177169ebec0d569126d58e7 (patch)
tree84ebc770984bae282956c67d6b0b2234b2a56a70 /obsolete-buildroot/make/binutils-uclibc.mk
parentb8498ba4793c3a73af038ea99f25034e15f9a6b8 (diff)
downloadmtk-20170518-a9cbe76ba66ff7056177169ebec0d569126d58e7.zip
mtk-20170518-a9cbe76ba66ff7056177169ebec0d569126d58e7.tar.gz
mtk-20170518-a9cbe76ba66ff7056177169ebec0d569126d58e7.tar.bz2
sstrip, nas support, mppe support, mac os x patches, syslogd on bootup, inittab correction
SVN-Revision: 136
Diffstat (limited to 'obsolete-buildroot/make/binutils-uclibc.mk')
-rw-r--r--obsolete-buildroot/make/binutils-uclibc.mk6
1 files changed, 3 insertions, 3 deletions
diff --git a/obsolete-buildroot/make/binutils-uclibc.mk b/obsolete-buildroot/make/binutils-uclibc.mk
index ae2e528..aec830c 100644
--- a/obsolete-buildroot/make/binutils-uclibc.mk
+++ b/obsolete-buildroot/make/binutils-uclibc.mk
@@ -46,15 +46,15 @@ $(STAGING_DIR)/$(REAL_GNU_TARGET_NAME)/bin/ld: $(BINUTILS_DIR1)/binutils/objdump
$(MAKE) $(JLEVEL) -C $(BINUTILS_DIR1) install
binutils-dependancies:
- @if [ ! -x /usr/bin/bison ] ; then \
+ @if [ -z "`which bison`" ] ; then \
echo -e "\n\nYou must install 'bison' on your build machine\n"; \
exit 1; \
fi;
- @if [ ! -x /usr/bin/flex ] ; then \
+ @if [ -z "`which flex`" ] ; then \
echo -e "\n\nYou must install 'flex' on your build machine\n"; \
exit 1; \
fi;
- @if [ ! -x /usr/bin/msgfmt ] ; then \
+ @if [ -z "`which msgfmt`" ] ; then \
echo -e "\n\nYou must install 'gettext' on your build machine\n"; \
exit 1; \
fi;