From 3f63c6d12f6b9ad8e0d7846c313f5adfb46a942e Mon Sep 17 00:00:00 2001 From: Leah Rowe Date: Sun, 20 Oct 2024 00:13:35 +0100 Subject: rom.sh: remove unnecessary logic from copyps1bios the .git directory never exists anyway, when doing a release, so the purpose this is intended is defeated by lbmk's design. individual headers say "pcsx-redux team" as copyright anyway, and the code for generating that COPYING file, with MIT license and correct years (matching the entire source code for the open bios) remains correct. a mitigation instead of this patch might be to maintain a hardcoded list of authors, and manually update it over time, but this is not required. however, it may be good practise for upstream to maintain such a file. perhaps i should contact them? Signed-off-by: Leah Rowe --- include/rom.sh | 5 ----- 1 file changed, 5 deletions(-) (limited to 'include/rom.sh') diff --git a/include/rom.sh b/include/rom.sh index 808959d8..9d11e757 100644 --- a/include/rom.sh +++ b/include/rom.sh @@ -33,11 +33,6 @@ copyps1bios() printf "MIT License\n\nCopyright (c) 2019-2024 PCSX-Redux authors\n\n" \ > bin/playstation/COPYING.txt || $err "!pcsx-redux copyright" cat config/snippet/mit >>bin/playstation/COPYING.txt || $err "!pcsx MIT" - - if [ -e "src/pcsx-redux/.git" ]; then - git -C src/pcsx-redux/src/mips/openbios shortlog -sne > \ - bin/playstation/AUTHORS.txt || $err "!pcsx-redux authors" - fi } mkpayload_grub() -- cgit v1.2.1