diff options
author | mbm <mbm@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2004-08-17 23:00:52 +0000 |
---|---|---|
committer | mbm <mbm@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2004-08-17 23:00:52 +0000 |
commit | b46fe1c707bc971ac7c06b7545b21c666349f7f9 (patch) | |
tree | 84ebc770984bae282956c67d6b0b2234b2a56a70 /obsolete-buildroot/make/binutils-uclibc.mk | |
parent | e2784f3bce41605cdae551531a6621ae9c1c043d (diff) |
sstrip, nas support, mppe support, mac os x patches, syslogd on bootup, inittab correction
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@136 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'obsolete-buildroot/make/binutils-uclibc.mk')
-rw-r--r-- | obsolete-buildroot/make/binutils-uclibc.mk | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/obsolete-buildroot/make/binutils-uclibc.mk b/obsolete-buildroot/make/binutils-uclibc.mk index ae2e5284be..aec830c61f 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; |