build: Fix uninstall target in arm64 - scc - simple c99 compiler
 (HTM) git clone git://git.simple-cc.org/scc
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) Submodules
 (DIR) README
 (DIR) LICENSE
       ---
 (DIR) commit 76e99b74c0360b4b3c379339d64b0e873ad675ff
 (DIR) parent 8bf178a38c08e806575890b7d97173b996b77d64
 (HTM) Author: Roberto E. Vargas Caballero <k0ga@shike2.com>
       Date:   Fri, 15 Mar 2024 13:37:55 +0100
       
       build: Fix uninstall target in arm64
       
       The target uninstall-arm64 was duplicated because
       uninstall-aarch64 was missed.
       
       Diffstat:
         M scripts/arm64.mk                    |       2 +-
       
       1 file changed, 1 insertion(+), 1 deletion(-)
       ---
 (DIR) diff --git a/scripts/arm64.mk b/scripts/arm64.mk
       @@ -4,5 +4,5 @@ aarch64 arm64:
        install-arm64 install-aarch64: arm64
                $(SCRIPTDIR)/install -p $(SCRIPTDIR)/proto.arm64 $(ROOT)
        
       -uninstall-arm64 uninstall-arm64:
       +uninstall-arm64 uninstall-aarch64:
                $(SCRIPTDIR)/uninstall -p $(SCRIPTDIR)/proto.arm64 $(ROOT)