diff options
| author | Leah Rowe <leah@libreboot.org> | 2025-04-11 14:11:24 +0100 | 
|---|---|---|
| committer | Leah Rowe <leah@libreboot.org> | 2025-04-11 14:11:24 +0100 | 
| commit | edbbde0b12d55b1277ed41ef0fcd15c287270f43 (patch) | |
| tree | a9317aa49c4c0af2225cb945398cab2fc6e9f2fb | |
| parent | 33bb0ecf7640f6fea9c1d90939a40167f59e5907 (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>
| -rwxr-xr-x | script/trees | 4 | 
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" ;; | 
