b49ffe2d67
* bootstrap, nix/sync-with-upstream: New files. * Makefile.am (EXTRA_DIST): Add `bootstrap'. * daemon.am (EXTRA_DIST): Add `nix/sync-with-upstream'.
16 lines
218 B
Bash
Executable file
16 lines
218 B
Bash
Executable file
#!/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
|