typo/folder bugfix
This commit is contained in:
parent
f423218722
commit
5479dde766
10
kernel.sh
10
kernel.sh
@ -468,9 +468,9 @@ doDefaults() {
|
|||||||
|
|
||||||
doEchoStep "Define options"
|
doEchoStep "Define options"
|
||||||
if [ "$CLANG" == "1" ]; then
|
if [ "$CLANG" == "1" ]; then
|
||||||
./scripts/config --set-str CONFIG_LOCALVERSION '${SEC}-clang'
|
./scripts/config --set-str CONFIG_LOCALVERSION "${SEC}-clang"
|
||||||
else
|
else
|
||||||
./scripts/config --set-str CONFIG_LOCALVERSION '${SEC}-gcc'
|
./scripts/config --set-str CONFIG_LOCALVERSION "${SEC}-gcc"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
doDefaultsDisable
|
doDefaultsDisable
|
||||||
@ -583,11 +583,11 @@ doCompile() {
|
|||||||
cd $WORKDIR
|
cd $WORKDIR
|
||||||
|
|
||||||
REVISION=1
|
REVISION=1
|
||||||
if [ -f revision.log ]; then
|
if [ -f ../revision.log ]; then
|
||||||
REVISION="`head -1 revision.log`"
|
REVISION="`head -1 ../revision.log`"
|
||||||
REVISION=$((REVISION+1))
|
REVISION=$((REVISION+1))
|
||||||
fi
|
fi
|
||||||
echo $REVISION > revision.log
|
echo $REVISION > ../revision.log
|
||||||
|
|
||||||
doStripSig
|
doStripSig
|
||||||
doStripDebug
|
doStripDebug
|
||||||
|
Loading…
Reference in New Issue
Block a user