mirror of
https://github.com/motioneye-project/motioneyeos.git
synced 2025-07-29 06:06:32 +00:00
syntax/comment touchups
This commit is contained in:
parent
f7739d831e
commit
476ec17d2f
@ -1,21 +1,25 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
if [ -x /usr/bin/sed ]; then
|
# Make sure the host sed supports '-i' (in-place).
|
||||||
SED="/usr/bin/sed";
|
# If it doesn't, we'll build and use our own.
|
||||||
|
|
||||||
|
if test -x /usr/bin/sed ; then
|
||||||
|
SED="/usr/bin/sed"
|
||||||
else
|
else
|
||||||
if [ -x /bin/sed ]; then
|
if test -x /bin/sed ; then
|
||||||
SED="/bin/sed";
|
SED="/bin/sed"
|
||||||
fi;
|
else
|
||||||
fi;
|
SED="sed"
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
echo "HELLO" > .sedtest
|
echo "HELLO" > .sedtest
|
||||||
$SED -i -e "s/HELLO/GOODBYE/" .sedtest >/dev/null 2>&1
|
$SED -i -e "s/HELLO/GOODBYE/" .sedtest >/dev/null 2>&1
|
||||||
|
|
||||||
if [ $? != 0 ] ; then
|
if test $? != 0 ; then
|
||||||
echo build-sed-host-binary
|
echo build-sed-host-binary
|
||||||
else
|
else
|
||||||
echo use-sed-host-binary
|
echo use-sed-host-binary
|
||||||
fi;
|
fi
|
||||||
|
|
||||||
rm -f .sedtest
|
rm -f .sedtest
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user