From f126b9ff63dbaef78393b06cab0041576c1dde8f Mon Sep 17 00:00:00 2001 From: Wayne Warthen Date: Mon, 12 Jul 2021 14:22:02 -0700 Subject: [PATCH] Linux Permissions (cont) - Added chmod +x commands for shell scripts (casefn.sh & Build.sh) --- Source/HBIOS/Makefile | 1 + Tools/unix/Makefile | 1 + 2 files changed, 2 insertions(+) diff --git a/Source/HBIOS/Makefile b/Source/HBIOS/Makefile index a5790a06..df3845ff 100644 --- a/Source/HBIOS/Makefile +++ b/Source/HBIOS/Makefile @@ -65,6 +65,7 @@ N8_std.rom: ROMSIZE=512 RCZ280_nat_zzr.rom: ROMSIZE=256 %.rom: + chmod +x Build.sh bash Build.sh $(DIFFBUILD) $(shell echo $* | sed 's/_/ /') $(ROMSIZE) hbios_rom.bin: hbios.asm build.inc diff --git a/Tools/unix/Makefile b/Tools/unix/Makefile index bbe6724b..04504dac 100644 --- a/Tools/unix/Makefile +++ b/Tools/unix/Makefile @@ -12,6 +12,7 @@ endif SUBDIRS= bst uz80as zx cpmtools bin2asm lzsa all: + chmod +x casefn.sh @for i in $(SUBDIRS) ; do \ (cd $$i ; make all ) \ done