summaryrefslogtreecommitdiff
path: root/autogen.sh
diff options
context:
space:
mode:
authorChengwei Yang <chengwei.yang@intel.com>2013-09-25 14:17:21 +0800
committerSimon McVittie <simon.mcvittie@collabora.co.uk>2013-09-25 13:42:10 +0100
commit6f47672f84b8ccfe7642aca1fd43eedcf2ef18f6 (patch)
tree3dae2690e37459bd5b7410e9f91468cfc09ad5f8 /autogen.sh
parent3984f7d2b607a1cdd9a9fa6148e9c24b8db5d0e9 (diff)
downloaddbus-6f47672f84b8ccfe7642aca1fd43eedcf2ef18f6.tar.gz
Use 'cp' instead of 'cp -av' to fix portable issue
Neither '-a' nor '-v' of 'cp' is available on OpenBSD 5.3, so use 'cp' instead to fix portable issue. Bug: https://bugs.freedesktop.org/show_bug.cgi?id=69789 Reviewed-by: Simon McVittie <simon.mcvittie@collabora.co.uk>
Diffstat (limited to 'autogen.sh')
-rwxr-xr-xautogen.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/autogen.sh b/autogen.sh
index 5d02a179..b9046879 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -15,7 +15,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
+ cp .git/hooks/pre-commit.sample .git/hooks/pre-commit
chmod +x .git/hooks/pre-commit
fi