mirror of
https://github.com/motioneye-project/motioneyeos.git
synced 2025-08-10 11:57:43 +00:00
- stop using head and use sed -e '1d' at the end instead
This commit is contained in:
@@ -129,7 +129,7 @@ if [ -z "$MAKE" ] ; then
|
|||||||
/bin/echo -e "\n\nYou must install 'make' on your build machine\n";
|
/bin/echo -e "\n\nYou must install 'make' on your build machine\n";
|
||||||
exit 1;
|
exit 1;
|
||||||
fi;
|
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
|
if [ -z "$MAKE_VERSION" ] ; then
|
||||||
echo "make installed: FALSE"
|
echo "make installed: FALSE"
|
||||||
/bin/echo -e "\n\nYou must install 'make' on your build machine\n";
|
/bin/echo -e "\n\nYou must install 'make' on your build machine\n";
|
||||||
@@ -160,7 +160,7 @@ if [ -z "$COMPILER" ] ; then
|
|||||||
exit 1;
|
exit 1;
|
||||||
fi;
|
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
|
if [ -z "$COMPILER_VERSION" ] ; then
|
||||||
echo "gcc installed: FALSE"
|
echo "gcc installed: FALSE"
|
||||||
/bin/echo -e "\n\nYou must install 'gcc' on your build machine\n";
|
/bin/echo -e "\n\nYou must install 'gcc' on your build machine\n";
|
||||||
@@ -187,7 +187,7 @@ if [ -z "$CXXCOMPILER" ] ; then
|
|||||||
#exit 1
|
#exit 1
|
||||||
fi
|
fi
|
||||||
if [ ! -z "$CXXCOMPILER" ] ; then
|
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
|
if [ -z "$CXXCOMPILER_VERSION" ] ; then
|
||||||
echo "c++ installed: FALSE"
|
echo "c++ installed: FALSE"
|
||||||
/bin/echo -e "\nYou may have to install 'g++' on your build machine\n"
|
/bin/echo -e "\nYou may have to install 'g++' on your build machine\n"
|
||||||
|
Reference in New Issue
Block a user