2012-12-03 21:43:26 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
# Import missing source files and create the build system.
|
|
|
|
|
|
|
|
set -e -x
|
|
|
|
|
|
|
|
top_srcdir="$PWD"
|
|
|
|
export top_srcdir
|
|
|
|
|
2012-12-13 22:45:38 +00:00
|
|
|
git submodule init
|
2012-12-03 21:43:26 +00:00
|
|
|
git submodule update
|
|
|
|
|
2012-12-13 22:45:38 +00:00
|
|
|
./nix/sync-with-upstream
|
|
|
|
|
2012-12-03 21:43:26 +00:00
|
|
|
exec autoreconf -vfi
|