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