Replacing 'noautoconfig' string in auto/ scripts with 'noauto'.
This commit is contained in:
parent
7f5742f660
commit
4aebed6033
|
@ -20,12 +20,12 @@ then
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Read meta config
|
# Read meta config
|
||||||
if [ "${1}" != "noautoconfig" ] && [ -x auto/build ]
|
if [ "${1}" != "noauto" ] && [ -x auto/build ]
|
||||||
then
|
then
|
||||||
./auto/build ${@}
|
./auto/build ${@}
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ "${1}" = "noautoconfig" ]
|
if [ "${1}" = "noauto" ]
|
||||||
then
|
then
|
||||||
shift
|
shift
|
||||||
fi
|
fi
|
||||||
|
|
|
@ -10,12 +10,12 @@
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
# Read meta config
|
# Read meta config
|
||||||
if [ "${1}" != "noautoconfig" ] && [ -x auto/clean ]
|
if [ "${1}" != "noauto" ] && [ -x auto/clean ]
|
||||||
then
|
then
|
||||||
./auto/clean ${@}
|
./auto/clean ${@}
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ "${1}" = "noautoconfig" ]
|
if [ "${1}" = "noauto" ]
|
||||||
then
|
then
|
||||||
shift
|
shift
|
||||||
fi
|
fi
|
||||||
|
@ -54,10 +54,10 @@ for ARGUMENT in ${ARGUMENTS}
|
||||||
do
|
do
|
||||||
case "${ARGUMENT}" in
|
case "${ARGUMENT}" in
|
||||||
--all)
|
--all)
|
||||||
LH=1 "${0}" noautoconfig --chroot
|
LH=1 "${0}" noauto --chroot
|
||||||
LH=1 "${0}" noautoconfig --binary
|
LH=1 "${0}" noauto --binary
|
||||||
LH=1 "${0}" noautoconfig --stage
|
LH=1 "${0}" noauto --stage
|
||||||
LH=1 "${0}" noautoconfig --source
|
LH=1 "${0}" noauto --source
|
||||||
|
|
||||||
if [ -d auto ]
|
if [ -d auto ]
|
||||||
then
|
then
|
||||||
|
|
|
@ -10,12 +10,12 @@
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
# Read meta config
|
# Read meta config
|
||||||
if [ "${1}" != "noautoconfig" ] && [ -x auto/config ]
|
if [ "${1}" != "noauto" ] && [ -x auto/config ]
|
||||||
then
|
then
|
||||||
./auto/config ${@}
|
./auto/config ${@}
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ "${1}" = "noautoconfig" ]
|
if [ "${1}" = "noauto" ]
|
||||||
then
|
then
|
||||||
shift
|
shift
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in New Issue