$(MAKE) -C $(BINUTILS_DIR1) install
binutils-dependancies:
- @if ! which bison ; then \
+ @if ! which bison > /dev/null ; then \
echo -e "\n\nYou must install 'bison' on your build machine\n"; \
exit 1; \
fi;
- @if ! which flex ; then \
+ @if ! which flex > /dev/null ; then \
echo -e "\n\nYou must install 'flex' on your build machine\n"; \
exit 1; \
fi;
- @if ! which msgfmt ; then \
+ @if ! which msgfmt > /dev/null ; then \
echo -e "\n\nYou must install 'gettext' on your build machine\n"; \
exit 1; \
fi;