summaryrefslogtreecommitdiff
path: root/bootstrap
diff options
context:
space:
mode:
Diffstat (limited to 'bootstrap')
-rwxr-xr-xbootstrap19
1 files changed, 12 insertions, 7 deletions
diff --git a/bootstrap b/bootstrap
index 4663438e..18789981 100755
--- a/bootstrap
+++ b/bootstrap
@@ -8,7 +8,7 @@ if ! git --version >/dev/null; then
fi
echo "$0: Updating submodules"
-echo | git submodule update --init --force
+echo | git submodule update --init --force --remote
# This is more portable than `which' but comes with
@@ -29,11 +29,16 @@ 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
+find wallet-core/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 -if
-
-echo "Importing single-page app (from external Git repository)"
-cd contrib/wallet-core
-git checkout -f origin/prebuilt
-
-exit 0