Fix minor buglet in this script.
This commit is contained in:
parent
766fbc81d0
commit
c82273cc74
|
@ -136,12 +136,13 @@ runtest()
|
||||||
|
|
||||||
echo "Making"
|
echo "Making"
|
||||||
make -j >/dev/null 2>teststderrM
|
make -j >/dev/null 2>teststderrM
|
||||||
|
makeRC=$?
|
||||||
if command -v sed >/dev/null 2>&1 ; then
|
if command -v sed >/dev/null 2>&1 ; then
|
||||||
sed "/\`u' modifier ignored since \`D' is the default/ d" \
|
sed "/\`u' modifier ignored since \`D' is the default/ d" \
|
||||||
teststderrM > teststderrMM
|
teststderrM > teststderrMM
|
||||||
mv -f teststderrMM teststderrM
|
mv -f teststderrMM teststderrM
|
||||||
fi
|
fi
|
||||||
if [ $? -ne 0 -o -s teststderrM ]; then
|
if [ $makeRC -ne 0 -o -s teststderrM ]; then
|
||||||
echo " "
|
echo " "
|
||||||
echo "******** Errors or warnings while making ********"
|
echo "******** Errors or warnings while making ********"
|
||||||
echo " "
|
echo " "
|
||||||
|
|
Loading…
Reference in New Issue