This is the mail archive of the libffi-discuss@sourceware.org mailing list for the libffi project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[PATCH] fix execute permissions on shell scripts


Anthony,

I just noticed that on libffi head, a bunch of scripts aren't marked executable. I'm not sure which are supposed to be and which aren't, but install-sh at least needs to be. This marks them all executable. (I think this is the way it used to be, since they are all executable in our pull -- maybe they got dropped inadvertently?)

Cheers,
Dan.
diff --git a/ChangeLog b/ChangeLog
index e21254f..859e10b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,9 @@
 2010-08-05  Dan Witte  <dwitte@mozilla.com>
 
+        * Add execute permissions to shell scripts.
+
+2010-08-05  Dan Witte  <dwitte@mozilla.com>
+
         * Reconfigured.
 
 2010-08-04  Dan Witte  <dwitte@mozilla.com>
diff --git a/compile b/compile
old mode 100644
new mode 100755
diff --git a/config.guess b/config.guess
old mode 100644
new mode 100755
diff --git a/config.sub b/config.sub
old mode 100644
new mode 100755
diff --git a/depcomp b/depcomp
old mode 100644
new mode 100755
diff --git a/install-sh b/install-sh
old mode 100644
new mode 100755
diff --git a/ltmain.sh b/ltmain.sh
old mode 100644
new mode 100755
diff --git a/mdate-sh b/mdate-sh
old mode 100644
new mode 100755
diff --git a/missing b/missing
old mode 100644
new mode 100755

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]