- stop using head and use sed -e '1d' at the end instead
This commit is contained in:
parent
8d34e5660f
commit
22c0b6ee5c
@ -129,7 +129,7 @@ if [ -z "$MAKE" ] ; then
|
||||
/bin/echo -e "\n\nYou must install 'make' on your build machine\n";
|
||||
exit 1;
|
||||
fi;
|
||||
MAKE_VERSION=$($MAKE --version 2>&1 | head -n1 | $XSED -e 's/^.* \([0-9\.]\)/\1/g' -e 's/[-\ ].*//g')
|
||||
MAKE_VERSION=$($MAKE --version 2>&1 | $XSED -e 's/^.* \([0-9\.]\)/\1/g' -e 's/[-\ ].*//g' -e '1q')
|
||||
if [ -z "$MAKE_VERSION" ] ; then
|
||||
echo "make installed: FALSE"
|
||||
/bin/echo -e "\n\nYou must install 'make' on your build machine\n";
|
||||
@ -160,7 +160,7 @@ if [ -z "$COMPILER" ] ; then
|
||||
exit 1;
|
||||
fi;
|
||||
|
||||
COMPILER_VERSION=$($COMPILER --version 2>&1 | head -n1 | $XSED -e 's/^.*(.CC) \([0-9\.]\)/\1/g' -e "s/[-\ ].*//g")
|
||||
COMPILER_VERSION=$($COMPILER --version 2>&1 | $XSED -e 's/^.*(.CC) \([0-9\.]\)/\1/g' -e "s/[-\ ].*//g" -e '1q')
|
||||
if [ -z "$COMPILER_VERSION" ] ; then
|
||||
echo "gcc installed: FALSE"
|
||||
/bin/echo -e "\n\nYou must install 'gcc' on your build machine\n";
|
||||
@ -187,7 +187,7 @@ if [ -z "$CXXCOMPILER" ] ; then
|
||||
#exit 1
|
||||
fi
|
||||
if [ ! -z "$CXXCOMPILER" ] ; then
|
||||
CXXCOMPILER_VERSION=$($CXXCOMPILER --version 2>&1 | head -n1 | $XSED -e 's/^.*(.CC) \([0-9\.]\)/\1/g' -e "s/[-\ ].*//g")
|
||||
CXXCOMPILER_VERSION=$($CXXCOMPILER --version 2>&1 | $XSED -e 's/^.*(.CC) \([0-9\.]\)/\1/g' -e "s/[-\ ].*//g" -e '1q')
|
||||
if [ -z "$CXXCOMPILER_VERSION" ] ; then
|
||||
echo "c++ installed: FALSE"
|
||||
/bin/echo -e "\nYou may have to install 'g++' on your build machine\n"
|
||||
|
Loading…
Reference in New Issue
Block a user