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