diff options
Diffstat (limited to 'bootstrap')
| -rwxr-xr-x | bootstrap | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/bootstrap b/bootstrap new file mode 100755 index 00000000000..e445af2f2c7 --- /dev/null +++ b/bootstrap | |||
| @@ -0,0 +1,16 @@ | |||
| 1 | #!/bin/sh | ||
| 2 | |||
| 3 | # Import missing source files and create the build system. | ||
| 4 | |||
| 5 | set -e -x | ||
| 6 | |||
| 7 | top_srcdir="$PWD" | ||
| 8 | export top_srcdir | ||
| 9 | |||
| 10 | if [ ! -d nix-upstream ] | ||
| 11 | then | ||
| 12 | git submodule init | ||
| 13 | fi | ||
| 14 | git submodule update | ||
| 15 | |||
| 16 | exec autoreconf -vfi | ||
