diff options
author | Tomek CEDRO <cederom@tlen.pl> | 2011-11-01 18:57:16 +0000 |
---|---|---|
committer | Tomek CEDRO <cederom@tlen.pl> | 2011-11-01 18:57:16 +0000 |
commit | dfdc7251df18b5027f00875866217c433fe44e36 (patch) | |
tree | 3d0b0b0b8c57b98f4f5591a24fd33af20d45bcf1 | |
parent | 5cc456a16690e9cf49faba4d2b4ca3ee3b758cf7 (diff) | |
download | openocd_libswd-dfdc7251df18b5027f00875866217c433fe44e36.tar.gz openocd_libswd-dfdc7251df18b5027f00875866217c433fe44e36.tar.bz2 openocd_libswd-dfdc7251df18b5027f00875866217c433fe44e36.tar.xz openocd_libswd-dfdc7251df18b5027f00875866217c433fe44e36.zip |
bootstrap also bootstraps submodules/libswd if necessary (when no configure file exist for that submodule, so git/master is used, not a release).
-rwxr-xr-x | bootstrap | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -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. |