Fix non-portable use of chmod in autogen.sh.

* autogen.sh: Remove option -c from chmod.
This commit is contained in:
Werner Koch 2012-11-16 13:45:14 +01:00
parent 1a17acd8e9
commit cd6de92f42

View File

@ -261,14 +261,14 @@ if [ -d .git ]; then
and .git/hooks/pre-commit.sample out of the way. and .git/hooks/pre-commit.sample out of the way.
EOF EOF
cp -av .git/hooks/pre-commit.sample .git/hooks/pre-commit 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 fi
if [ -f build-aux/git-hooks/commit-msg -a ! -f .git/hooks/commit-msg ] ; then if [ -f build-aux/git-hooks/commit-msg -a ! -f .git/hooks/commit-msg ] ; then
cat <<EOF >&2 cat <<EOF >&2
*** Activating commit log message check hook. *** *** Activating commit log message check hook. ***
EOF EOF
cp -av build-aux/git-hooks/commit-msg .git/hooks/commit-msg cp -av build-aux/git-hooks/commit-msg .git/hooks/commit-msg
chmod -c +x .git/hooks/commit-msg chmod +x .git/hooks/commit-msg
fi fi
fi fi