build: Add bootstrap' and sync-with-upstream' scripts.

* bootstrap, nix/sync-with-upstream: New files.
* Makefile.am (EXTRA_DIST): Add `bootstrap'.
* daemon.am (EXTRA_DIST): Add `nix/sync-with-upstream'.
This commit is contained in:
Ludovic Courtès 2012-12-03 22:43:26 +01:00
parent e05385192c
commit b49ffe2d67
4 changed files with 82 additions and 0 deletions

16
bootstrap Executable file
View file

@ -0,0 +1,16 @@
#!/bin/sh
# Import missing source files and create the build system.
set -e -x
top_srcdir="$PWD"
export top_srcdir
if [ ! -d nix-upstream ]
then
git submodule init
fi
git submodule update
exec autoreconf -vfi