summaryrefslogtreecommitdiff
path: root/bootstrap
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2019-10-05 15:49:28 +0200
committerChristian Grothoff <christian@grothoff.org>2019-10-05 15:49:28 +0200
commit54bde12c0295e008e050a8418c4702b8f3ea4a55 (patch)
tree3d5e4a60f4fe749e3348e228617c2105224b9b15 /bootstrap
parent99a8156209ae62a8b5d73fcf9fef25c03b89a6ca (diff)
downloadmerchant-54bde12c0295e008e050a8418c4702b8f3ea4a55.tar.gz
merchant-54bde12c0295e008e050a8418c4702b8f3ea4a55.tar.bz2
merchant-54bde12c0295e008e050a8418c4702b8f3ea4a55.zip
add uncrustify hook
Diffstat (limited to 'bootstrap')
-rwxr-xr-xbootstrap19
1 files changed, 19 insertions, 0 deletions
diff --git a/bootstrap b/bootstrap
index 373e5f5e..5fbaf9b7 100755
--- a/bootstrap
+++ b/bootstrap
@@ -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