From dfdc7251df18b5027f00875866217c433fe44e36 Mon Sep 17 00:00:00 2001 From: Tomek CEDRO Date: Tue, 1 Nov 2011 18:57:16 +0000 Subject: bootstrap also bootstraps submodules/libswd if necessary (when no configure file exist for that submodule, so git/master is used, not a release). --- bootstrap | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/bootstrap b/bootstrap index 3b4b4783..ea40b89e 100755 --- a/bootstrap +++ b/bootstrap @@ -43,6 +43,12 @@ autoheader automake --gnu --add-missing --copy ) +# Bootstrap the submodules/libswd when working with git master not release +if [ ! -f submodules/libswd/configure ]; then + echo "Info: submodules/libswd needs to be bootstrapped too..." + cd submodules/libswd; sh autogen.sh +fi + # AM_MAINTAINER_MODE requires --enable-maintainer-mode from everyone using # current source snapshots (working from GIT, or some source snapshot, etc) # otherwise the documentation will fail to build due to missing version.texi. -- cgit v1.2.3