diff options
author | Matthias Clasen <mclasen@redhat.com> | 2016-05-03 17:25:54 -0400 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2016-05-03 17:25:54 -0400 |
commit | b5a997df4358159466c878b27902f9bd4d485d75 (patch) | |
tree | e7afe97706c3d9b8c2341304560a8c833d245ac9 /autogen.sh | |
parent | c9169c5a4f672d710abcef3975f64a47aeb20373 (diff) | |
download | flatpak-b5a997df4358159466c878b27902f9bd4d485d75.tar.gz |
autogen.sh: Look for bubblewrap submodule too
autogen.sh had code to init submodules if the libglnx directory
is empty. We should also check for bubblewrap now.
Diffstat (limited to 'autogen.sh')
-rwxr-xr-x | autogen.sh | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -18,7 +18,7 @@ fi # regenerated from their corresponding *.in files by ./configure anyway. touch INSTALL -if ! test -f libglnx/README.md; then +if ! test -f libglnx/README.md -a -f bubblewrap/README.md; then git submodule update --init fi # Workaround automake bug with subdir-objects and computed paths |