mirror of
https://github.com/motioneye-project/motioneyeos.git
synced 2025-07-31 15:07:43 +00:00
- ignore eventual errors from which(1)
This commit is contained in:
parent
bf898045a1
commit
beca59b090
@ -3,7 +3,7 @@ SEDLIST="/usr/bin/sed /bin/sed sed gnused gsed"
|
|||||||
for SED in $SEDLIST
|
for SED in $SEDLIST
|
||||||
do
|
do
|
||||||
if ! test -x $SED ; then
|
if ! test -x $SED ; then
|
||||||
SED=$(which $SED)
|
SED=$(which $SED 2> /dev/null)
|
||||||
if ! test -x "$SED" > /dev/null ; then
|
if ! test -x "$SED" > /dev/null ; then
|
||||||
SED=""
|
SED=""
|
||||||
continue
|
continue
|
||||||
|
@ -123,7 +123,7 @@ fi
|
|||||||
# check build system 'make'
|
# check build system 'make'
|
||||||
#
|
#
|
||||||
#############################################################
|
#############################################################
|
||||||
MAKE=$(which make)
|
MAKE=$(which make 2> /dev/null)
|
||||||
if [ -z "$MAKE" ] ; then
|
if [ -z "$MAKE" ] ; 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";
|
||||||
@ -152,7 +152,7 @@ echo "GNU make version '$MAKE_VERSION': Ok"
|
|||||||
#############################################################
|
#############################################################
|
||||||
COMPILER=$(which $HOSTCC 2> /dev/null)
|
COMPILER=$(which $HOSTCC 2> /dev/null)
|
||||||
if [ -z "$COMPILER" ] ; then
|
if [ -z "$COMPILER" ] ; then
|
||||||
COMPILER=$(which cc)
|
COMPILER=$(which cc 2> /dev/null)
|
||||||
fi;
|
fi;
|
||||||
if [ -z "$COMPILER" ] ; then
|
if [ -z "$COMPILER" ] ; then
|
||||||
echo "C Compiler installed: FALSE"
|
echo "C Compiler installed: FALSE"
|
||||||
@ -179,7 +179,7 @@ echo "C compiler version '$COMPILER_VERSION': Ok"
|
|||||||
# check for host CXX
|
# check for host CXX
|
||||||
CXXCOMPILER=$(which $HOSTCXX 2> /dev/null)
|
CXXCOMPILER=$(which $HOSTCXX 2> /dev/null)
|
||||||
if [ -z "$CXXCOMPILER" ] ; then
|
if [ -z "$CXXCOMPILER" ] ; then
|
||||||
CXXCOMPILER=$(which c++)
|
CXXCOMPILER=$(which c++ 2> /dev/null)
|
||||||
fi
|
fi
|
||||||
if [ -z "$CXXCOMPILER" ] ; then
|
if [ -z "$CXXCOMPILER" ] ; then
|
||||||
echo "C++ Compiler installed: FALSE"
|
echo "C++ Compiler installed: FALSE"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user