Use 'chmod' instead of 'chmod -c'
authorChengwei Yang <chengwei.yang@intel.com>
Wed, 25 Sep 2013 06:09:19 +0000 (14:09 +0800)
committerSimon McVittie <simon.mcvittie@collabora.co.uk>
Wed, 25 Sep 2013 12:41:46 +0000 (13:41 +0100)
chmod -c is not available on *BSD system, and '-v' is not available on
OpenBSD, so just execute chmod without any option.

Bug: https://bugs.freedesktop.org/show_bug.cgi?id=35881
Reviewed-by: Simon McVittie <simon.mcvittie@collabora.co.uk>
autogen.sh

index b049f4e..5d02a17 100755 (executable)
@@ -16,7 +16,7 @@ DIE=0
 if [ -f .git/hooks/pre-commit.sample -a ! -f .git/hooks/pre-commit ] ; then
     echo "Activating pre-commit hook."
     cp -av .git/hooks/pre-commit.sample .git/hooks/pre-commit
-    chmod -c +x  .git/hooks/pre-commit
+    chmod +x .git/hooks/pre-commit
 fi
 
 (autoconf --version) < /dev/null > /dev/null 2>&1 || {