From 80293fbc82a39f88c19fe01361a454e589c3fae4 Mon Sep 17 00:00:00 2001 From: ceriel Date: Fri, 18 Oct 1991 10:07:38 +0000 Subject: [PATCH] Make target writable --- first/mk_target | 4 +++- util/shf/proto.make | 1 + 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/first/mk_target b/first/mk_target index 9e483b139..358087219 100755 --- a/first/mk_target +++ b/first/mk_target @@ -17,7 +17,6 @@ create_dir $TARGET_HOME/bin cp local.h em_path.h $TARGET_HOME/config ( cd $SRC_HOME/bin ; tar cf - . ) | ( cd $TARGET_HOME/bin ; tar xf - ) echo "echo $SYSNAME" > $TARGET_HOME/bin/ack_sys -chmod +x $TARGET_HOME/bin/ack_sys : machine-independant stuff @@ -40,4 +39,7 @@ cp $SRC_HOME/etc/ip_spec.t $TARGET_HOME/etc/ip_spec.t ( cd $SRC_HOME/man ; tar cf - . ) | ( cd $TARGET_HOME/man ; tar xf - ) ( cd $SRC_HOME/doc ; tar cf - . ) | ( cd $TARGET_HOME/doc ; tar xf - ) +cd $TARGET_HOME +find . -type f -exec chmod +w {} \; + exit 0 diff --git a/util/shf/proto.make b/util/shf/proto.make index 507fe09fc..aecc97730 100644 --- a/util/shf/proto.make +++ b/util/shf/proto.make @@ -5,6 +5,7 @@ install: -rm -f $(TARGET_HOME)/bin/march cp $(SRC_HOME)/util/shf/march.sh $(TARGET_HOME)/bin/march + chmod +w $(TARGET_HOME)/bin/march clean: @echo always clean -- 2.34.1