summaryrefslogtreecommitdiff
path: root/script/trees
diff options
context:
space:
mode:
authorLeah Rowe <leah@libreboot.org>2025-04-11 14:11:24 +0100
committerLeah Rowe <leah@libreboot.org>2025-04-11 14:11:24 +0100
commitedbbde0b12d55b1277ed41ef0fcd15c287270f43 (patch)
treea9317aa49c4c0af2225cb945398cab2fc6e9f2fb /script/trees
parent33bb0ecf7640f6fea9c1d90939a40167f59e5907 (diff)
trees: set dry=":" on ./mk -f
We don't want any build commands to run, when the -f flag is used. Signed-off-by: Leah Rowe <leah@libreboot.org>
Diffstat (limited to 'script/trees')
-rwxr-xr-xscript/trees4
1 files changed, 3 insertions, 1 deletions
diff --git a/script/trees b/script/trees
index ee3d2ee0..306f189f 100755
--- a/script/trees
+++ b/script/trees
@@ -37,7 +37,9 @@ main()
-m) mode="menuconfig" ;;
-c) mode="distclean" ;;
-x) mode="crossgcc-clean" ;;
- -f) do_make="n" ;;
+ -f)
+ do_make="n"
+ dry=":" ;;
-s) mode="savedefconfig" ;;
-l) mode="olddefconfig" ;;
-n) mode="nconfig" ;;