diff options
author | Christian Grothoff <christian@grothoff.org> | 2019-10-05 15:49:28 +0200 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2019-10-05 15:49:28 +0200 |
commit | 54bde12c0295e008e050a8418c4702b8f3ea4a55 (patch) | |
tree | 3d5e4a60f4fe749e3348e228617c2105224b9b15 /bootstrap | |
parent | 99a8156209ae62a8b5d73fcf9fef25c03b89a6ca (diff) |
add uncrustify hook
Diffstat (limited to 'bootstrap')
-rwxr-xr-x | bootstrap | 19 |
1 files changed, 19 insertions, 0 deletions
@@ -8,5 +8,24 @@ fi echo "$0: Updating submodules" echo | git submodule update --init + +# This is more portable than `which' but comes with +# the caveat of not(?) properly working on busybox's ash: +existence() +{ + command -v "$1" >/dev/null 2>&1 +} + + +if existence uncrustify; then + echo "Installing uncrustify hook and configuration" + # Install uncrustify format symlink (if possible) + ln -s contrib/uncrustify.cfg uncrustify.cfg 2> /dev/null + # Install pre-commit hook (if possible) + ln -s ../../contrib/uncrustify_precommit .git/hooks/pre-commit 2> /dev/null +else + echo "Uncrustify not detected, hook not installed. Please install uncrustify if you plan on doing development" +fi + echo "$0: Running autoreconf" autoreconf -if |