aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndy Green <andy.green@linaro.org>2012-11-15 01:52:42 +0000
committerAndy Green <andy.green@linaro.org>2012-11-16 12:15:04 +0800
commitfaba564ab1716b87ae43e4e5c093856d9198a2c5 (patch)
treecb85110116e4c4deb6cf5a11f212c6af89fa0f41
parent06352c2b4aca8f7487047aa811b204bcaba5613e (diff)
remove dev null redirects from install.sh
Signed-off-by: Andy Green <andy.green@linaro.org>
-rwxr-xr-xinstall.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/install.sh b/install.sh
index ca8695a..e4ad075 100755
--- a/install.sh
+++ b/install.sh
@@ -1,6 +1,6 @@
#!/bin/sh
#------------------------------------------------------------------
-# install.sh --- Instal script for the MB86H55 reffernce software
+# install.sh --- Instal script for the MB86H55 refernce software
#------------------------------------------------------------------
APL_INST_DIR="/usr/local/bin"
@@ -14,7 +14,7 @@ echo "Installation start."
# Make & install fmb_player_apl, aka "hdcapture"
#
echo -n "Making fmb_player_apl... "
-(cd fmb_player_apl/Release; make clean > /dev/null; make > /dev/null 2>&1)
+(cd fmb_player_apl/Release; make clean; make)
echo "done."
echo -n "Installing fmb_player_apl... "
@@ -26,7 +26,7 @@ echo -n "Installing firm... "
echo "done."
echo -n "Making fmb_driver... "
-(cd fmb_driver; make clean > /dev/null; make > /dev/null 2>&1; sudo make install >/dev/null)
+(cd fmb_driver; make clean > /dev/null; make; sudo make install)
echo "done."
echo -n "Making mmux_driver... "