From 8eae53c50ba4e18aab8cf18b7aaabb19b0ad2c34 Mon Sep 17 00:00:00 2001 From: Florian Pose <fp@igh-essen.com> Date: Wed, 17 May 2006 09:28:43 +0000 Subject: [PATCH] Set permissions in install script. --- Makefile | 1 - install.sh | 2 ++ 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index c6de57e9..027ed62b 100644 --- a/Makefile +++ b/Makefile @@ -58,7 +58,6 @@ doc: cleandoc: @rm -rf doc - install: @./install.sh $(KERNEL) $(DEVICEINDEX) diff --git a/install.sh b/install.sh index 8781de81..70a42b96 100755 --- a/install.sh +++ b/install.sh @@ -76,6 +76,7 @@ fi echo " installing startup script..." cp ethercat.sh /etc/init.d/ethercat || exit 1 +chmod +x /etc/init.d/ethercat || exit 1 if [ ! -L /usr/sbin/rcethercat ]; then ln -s /etc/init.d/ethercat /usr/sbin/rcethercat || exit 1 fi @@ -84,6 +85,7 @@ fi echo " installing tools..." cp tools/ec_list.pl /usr/local/bin/ec_list || exit 1 +chmod +x /usr/local/bin/ec_list || exit 1 # Finish -- GitLab