diff options
author | Ludovic Courtès <ludo@gnu.org> | 2012-12-13 23:45:38 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2012-12-13 23:46:33 +0100 |
commit | e2a06ddc7a7d5620f7df8397cec714335b548d6a (patch) | |
tree | 82c4d50719c6988b34c5c04805dd25598b536659 /bootstrap | |
parent | 4aa52039a77a0f92ffd02c0da1dbae968693ca5f (diff) | |
download | patches-e2a06ddc7a7d5620f7df8397cec714335b548d6a.tar patches-e2a06ddc7a7d5620f7df8397cec714335b548d6a.tar.gz |
build: Have `bootstrap' run all the necessary steps.
* bootstrap: Always run "git submodule init". Run
`nix/sync-with-upstream'.
Reported by Nikita Karetnikov and Andreas Enge.
Diffstat (limited to 'bootstrap')
-rwxr-xr-x | bootstrap | 7 |
1 files changed, 3 insertions, 4 deletions
@@ -7,10 +7,9 @@ set -e -x top_srcdir="$PWD" export top_srcdir -if [ ! -d nix-upstream ] -then - git submodule init -fi +git submodule init git submodule update +./nix/sync-with-upstream + exec autoreconf -vfi |