summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFelix Singer <felixsinger@posteo.net>2022-12-02 00:21:50 +0100
committerAnastasia Klimchuk <aklm@chromium.org>2022-12-13 20:48:07 +0000
commitd867f0fbe8720c77f13b06e2fa5301b4bd68945b (patch)
tree70a5b4b47017108f44f6ca948bab3a13c80b70d0
parent83cd13aa7fe3ccfd0ae5098652d951187349d3b2 (diff)
downloadflashrom-d867f0fbe8720c77f13b06e2fa5301b4bd68945b.tar.gz
flashrom-d867f0fbe8720c77f13b06e2fa5301b4bd68945b.tar.bz2
flashrom-d867f0fbe8720c77f13b06e2fa5301b4bd68945b.zip
test_build.sh: Switch to meson setup <dir>
Running the setup command as `meson [options]` instead of `meson setup [options]` is ambiguous and deprecated. Original-Signed-off-by: Felix Singer <felixsinger@posteo.net> Original-Reviewed-on: https://review.coreboot.org/c/flashrom/+/70242 Original-Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Original-Reviewed-by: Anastasia Klimchuk <aklm@chromium.org> Original-Reviewed-by: Alexander Goncharov <chat@joursoir.net> (cherry picked from commit 48e058983d6a1e36cd37bacad88f1e9ea3bd6092) Change-Id: I6e84997f910928d3973a4e5826a2d4196bdb2916 Signed-off-by: Evan Benn <evanbenn@google.com> Reviewed-on: https://review.coreboot.org/c/flashrom/+/70325 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Anastasia Klimchuk <aklm@chromium.org> Reviewed-by: Angel Pons <th3fanbus@gmail.com>
-rwxr-xr-xtest_build.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/test_build.sh b/test_build.sh
index 813d0b957..c2f74d229 100755
--- a/test_build.sh
+++ b/test_build.sh
@@ -65,7 +65,7 @@ build_meson () {
return
fi
- meson ${programmer_dir} ${meson_opts} -Dprogrammer=${programmer}
+ meson setup ${programmer_dir} ${meson_opts} -Dprogrammer=${programmer}
ninja ${ninja_opts} -C ${programmer_dir}
ninja ${ninja_opts} -C ${programmer_dir} test
done