mk: rename autoconfargs to configureargs

Signed-off-by: Leah Rowe <leah@libreboot.org>
This commit is contained in:
Leah Rowe
2026-09-16 10:58:00 +01:00
parent d165f14a4d
commit cebae0ed80
2 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -1,7 +1,7 @@
# SPDX-License-Identifier: GPL-3.0-or-later
bootstrapargs="--gnulib-srcdir=gnulib/ --no-git"
autoconfargs="--with-platform=coreboot --disable-werror"
configureargs="--with-platform=coreboot --disable-werror"
makeargs="FS_PAYLOAD_MODULES=\"\""
buildtype="autohell"
mkhelper="mkpayload_grub"
+3 -3
View File
@@ -78,7 +78,7 @@ if_not_dry_build=""
if_single_tree=":"
eval "`newvar autoconfargs autogenargs badhash badtghash bootstrapargs \
eval "`newvar configureargs autogenargs badhash badtghash bootstrapargs \
build_depend buildtype cleanargs cmakedir cmd defconfig dest_dir elfdir \
forcepull listfile makeargs mdir mkhelper mkhelpercfg mode postmake \
premake project release rev srcdir target target_dir tree xarch xgcctree \
@@ -262,7 +262,7 @@ configure_project()
{
_tcfg="$1/target.cfg"
eval "`newvar autoconfargs badhash badtghash bootstrapargs \
eval "`newvar configureargs badhash badtghash bootstrapargs \
build_depend buildtype cleanargs makeargs mkhelper postmake \
premake release xarch xgcctree xlang`"
@@ -523,7 +523,7 @@ check_autoconf()
[ -f "autogen.sh" ] && \
x_ ./autogen.sh $autogenargs
[ -f "configure" ] && \
x_ ./configure $autoconfargs; :
x_ ./configure $configureargs; :
) || err "can't bootstrap project: $1" "check_autoconf" "$@"; :
}