fix auto file handling regression
b4598b234c
mistakenly stopped passing along
options to auto files.
Gbp-Dch: Ignore
This commit is contained in:
parent
997a7f73f9
commit
6a5d42d569
|
@ -21,7 +21,7 @@ Auto_build_config
|
|||
if [ "${1}" = "noauto" ]; then
|
||||
shift
|
||||
else
|
||||
Maybe_auto_redirect build
|
||||
Maybe_auto_redirect build "${@}"
|
||||
fi
|
||||
|
||||
# Setting static variables
|
||||
|
|
|
@ -18,7 +18,7 @@ set -e
|
|||
if [ "${1}" = "noauto" ]; then
|
||||
shift
|
||||
else
|
||||
Maybe_auto_redirect clean
|
||||
Maybe_auto_redirect clean "${@}"
|
||||
fi
|
||||
|
||||
# Setting static variables
|
||||
|
|
|
@ -922,7 +922,7 @@ fi
|
|||
if [ "${1}" = "noauto" ]; then
|
||||
shift
|
||||
else
|
||||
Maybe_auto_redirect config
|
||||
Maybe_auto_redirect config "${@}"
|
||||
fi
|
||||
|
||||
# Reading config defaults configured at system level
|
||||
|
|
Loading…
Reference in New Issue