PKGBUILD: add back briefly used script flags
Some users may have switched to the new flags when they
got added, some may have not. We've reverted those
updated flags in commit: 756a7d02ae
Add support for them back with a warning.
This commit is contained in:
parent
abff9518a7
commit
6258f9892c
1 changed files with 8 additions and 0 deletions
8
PKGBUILD
8
PKGBUILD
|
@ -38,6 +38,10 @@
|
||||||
#
|
#
|
||||||
# Set to anything but null to activate.
|
# Set to anything but null to activate.
|
||||||
: "${_use_current:=""}"
|
: "${_use_current:=""}"
|
||||||
|
: "${_reuse_current:=""}"
|
||||||
|
[[ -n "${_reuse_current}" ]] && \
|
||||||
|
warning "Please switch to using '_use_current' flag instead of '_reuse_current'" && \
|
||||||
|
_use_current="y"
|
||||||
|
|
||||||
# Apply selected optimizations chosen by
|
# Apply selected optimizations chosen by
|
||||||
# the package maintainers to the config.
|
# the package maintainers to the config.
|
||||||
|
@ -49,6 +53,10 @@
|
||||||
#
|
#
|
||||||
# Set to anything but null to activate.
|
# Set to anything but null to activate.
|
||||||
: "${_optimize_defconfig:=""}"
|
: "${_optimize_defconfig:=""}"
|
||||||
|
: "${_update_kconfig_on_reuse:=""}"
|
||||||
|
[[ -n "${_update_kconfig_on_reuse}" ]] && \
|
||||||
|
warning "Please switch to using '_update_kconfig_on_reuse' flag instead of '_optimize_defconfig'" && \
|
||||||
|
_optimize_defconfig="y"
|
||||||
|
|
||||||
# Determines whether the kernel configuration should be
|
# Determines whether the kernel configuration should be
|
||||||
# copied into the source tree before compilation starts.
|
# copied into the source tree before compilation starts.
|
||||||
|
|
Loading…
Add table
Reference in a new issue