Revision 3253830d46cc55dd6b946468edd6a6f72944ef48 authored by Ludovic Courtès on 17 July 2013, 13:33:48 UTC, committed by Ludovic Courtès on 17 July 2013, 13:33:48 UTC
1 parent 6023cc7
Raw File
bootstrap
#!/bin/sh

# Import missing source files and create the build system.

set -e -x

top_srcdir="$PWD"
export top_srcdir

git submodule init
git submodule update

./nix/sync-with-upstream

exec autoreconf -vfi
back to top