Some corrections
This commit is contained in:
parent
aba0ed2f52
commit
2f2b6ccadf
2 changed files with 10 additions and 2 deletions
|
|
@ -7,9 +7,13 @@ first) FDIR=.
|
||||||
esac
|
esac
|
||||||
|
|
||||||
if echo 'a\c' | grep 'c' >/dev/null ; then
|
if echo 'a\c' | grep 'c' >/dev/null ; then
|
||||||
E_FLAG='-n' E_SFX='' : We have BSD-like echo command.
|
: We have BSD-like echo command.
|
||||||
|
E_FLAG='-n'
|
||||||
|
E_SFX=''
|
||||||
else
|
else
|
||||||
E_FLAG='' E_SFX='\c' : We have SystemV-like echo command.
|
: We have SystemV-like echo command.
|
||||||
|
E_FLAG=''
|
||||||
|
E_SFX='\c'
|
||||||
fi
|
fi
|
||||||
export E_FLAG E_SFX
|
export E_FLAG E_SFX
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -81,6 +81,10 @@ EOF
|
||||||
fi
|
fi
|
||||||
cd ../..
|
cd ../..
|
||||||
fi
|
fi
|
||||||
|
if [ -f $SRC_HOME/mach/$i/mach_params ]
|
||||||
|
then :
|
||||||
|
else continue
|
||||||
|
fi
|
||||||
for j in libem libend libmon libfp libsys libdb
|
for j in libem libend libmon libfp libsys libdb
|
||||||
do
|
do
|
||||||
if [ -d $i/$j ]
|
if [ -d $i/$j ]
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue