blob: 1b4e04b15e1bf97079a64930d94a01143e33c9a6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
#!/bin/sh
# This file is in the public domain.
set -eu
if ! git --version >/dev/null; then
echo "git not installed"
exit 1
fi
echo "$0: Updating submodules"
# Caution: We do NOT want to fetch the latest version with --remote,
# but instead always the one that's recorded in the repository.
echo | git submodule update --init --force
./contrib/check-prebuilt
# Generate based on pinned submodule
./contrib/gana-generate.sh
# 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 || true
# Install pre-commit hook (if possible)
ln -s ../../contrib/uncrustify_precommit .git/hooks/pre-commit 2> /dev/null || true
else
echo "Uncrustify not detected, hook not installed. Please install uncrustify if you plan on doing development"
fi
# Generate Makefile.am in contrib/
cd contrib
rm -f Makefile.am
echo 'dist_amlspapkgdata_DATA = \' > Makefile.am.ext
find wallet-core/aml-backoffice/ -type f | sort | awk '{print " " $1 " \\" }' >> Makefile.am.ext
# Remove extra '\' at the end of the file
truncate -s -2 Makefile.am.ext
echo "" >> Makefile.am.ext
echo 'dist_kycspapkgdata_DATA = \' >> Makefile.am.ext
find wallet-core/kyc/ -type f | sort | awk '{print " " $1 " \\" }' >> Makefile.am.ext
# Remove extra '\' at the end of the file
truncate -s -2 Makefile.am.ext
echo "" >> Makefile.am.ext
echo 'dist_auditorspapkgdata_DATA = \' >> Makefile.am.ext
find wallet-core/auditor-backoffice/ -type f | sort | awk '{print " " $1 " \\" }' >> Makefile.am.ext
# Remove extra '\' at the end of the file
truncate -s -2 Makefile.am.ext
cat Makefile.am.in Makefile.am.ext >> Makefile.am
# Prevent accidental editing of the generated Makefile.am
chmod -w Makefile.am
cd ..
echo "$0: Running autoreconf"
autoreconf -fi
|