[uClibc-cvs] svn commit: trunk/buildroot/toolchain/binutils

vapier at uclibc.org vapier at uclibc.org
Sun Aug 28 07:56:08 UTC 2005


Author: vapier
Date: 2005-08-28 01:56:08 -0600 (Sun, 28 Aug 2005)
New Revision: 11271

Log:
jdupre writes in Bug 390: trying to use buildroot failed telling me to install bison ... turns out i was missing which, not bison

Modified:
   trunk/buildroot/toolchain/binutils/binutils.mk


Changeset:
Modified: trunk/buildroot/toolchain/binutils/binutils.mk
===================================================================
--- trunk/buildroot/toolchain/binutils/binutils.mk	2005-08-28 07:53:37 UTC (rev 11270)
+++ trunk/buildroot/toolchain/binutils/binutils.mk	2005-08-28 07:56:08 UTC (rev 11271)
@@ -68,6 +68,10 @@
 	$(MAKE) -C $(BINUTILS_DIR1) install
 
 binutils-dependancies:
+	@if ! which which > /dev/null ; then \
+		echo -e "\n\nYou must install 'which' on your build machine\n"; \
+		exit 1; \
+	fi;
 	@if ! which bison > /dev/null ; then \
 		echo -e "\n\nYou must install 'bison' on your build machine\n"; \
 		exit 1; \




More information about the uClibc-cvs mailing list