diff options
author | Leah Rowe <leah@libreboot.org> | 2025-05-22 01:47:02 +0100 |
---|---|---|
committer | Leah Rowe <leah@libreboot.org> | 2025-05-22 01:47:02 +0100 |
commit | 8e0c6059d155052c30a2b765b91c580e93ebdb7f (patch) | |
tree | c261f7dee9573f28e556212c6ebd3771555a81b8 /include | |
parent | a3250d144744e77b6a0d0f7cf011ecc6800edaaf (diff) |
rom.sh: skip copyps1bios on dry builds
otherwise, ./mk -d (without arguments) will fail.
Signed-off-by: Leah Rowe <leah@libreboot.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/rom.sh | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/rom.sh b/include/rom.sh index 65900a01..1c39979d 100644 --- a/include/rom.sh +++ b/include/rom.sh @@ -20,6 +20,8 @@ buildser() copyps1bios() { + [ "$dry" = ":" ] && return 0; : + remkdir "bin/playstation" x_ cp src/pcsx-redux/src/mips/openbios/openbios.bin bin/playstation |