aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWerner Koch <[email protected]>2012-11-16 09:51:28 +0000
committerWerner Koch <[email protected]>2012-11-16 09:51:28 +0000
commit17c8c16ee2dcb33abb7fdf50c40015f1b9d13689 (patch)
tree46b99a1d93c616b449a63ee4e91583c529cbe17c
parentAdd a fuzzy entry to the translations (diff)
downloadlibgpg-error-17c8c16ee2dcb33abb7fdf50c40015f1b9d13689.tar.gz
libgpg-error-17c8c16ee2dcb33abb7fdf50c40015f1b9d13689.zip
Fix non-portable use of chmod in autogen.sh.
* autogen.sh: Remove option -c from chmod.
-rwxr-xr-xautogen.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/autogen.sh b/autogen.sh
index 596565b..bf2c490 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -256,7 +256,7 @@ if [ -d .git ]; then
and .git/hooks/pre-commit.sample out of the way.
EOF
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
tmp=$(git config --get filter.cleanpo.clean)
if [ "$tmp" != "awk '/^\"POT-Creation-Date:/&&!s{s=1;next};!/^#: /{print}'" ]