[PATCH] Fix autogen.sh to autogen submodules by default.
Call autogen_submodules even if $skip_modules is unset (which it would be on most systems that just cloned the repository). Signed-off-by: Gergely Nagy <algernon@balabit.hu> --- autogen.sh | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/autogen.sh b/autogen.sh index 3569af3..569f134 100755 --- a/autogen.sh +++ b/autogen.sh @@ -31,7 +31,7 @@ autogen_submodules() done } -if [ "$skip_submodules" = 0 ]; then +if [ -z "$skip_submodules" ] || [ "$skip_modules" = 0 ]; then autogen_submodules fi -- 1.7.2.3
Applied, thanks. On Fri, 2011-03-11 at 17:06 +0100, Gergely Nagy wrote:
Call autogen_submodules even if $skip_modules is unset (which it would be on most systems that just cloned the repository).
Signed-off-by: Gergely Nagy <algernon@balabit.hu> --- autogen.sh | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/autogen.sh b/autogen.sh index 3569af3..569f134 100755 --- a/autogen.sh +++ b/autogen.sh @@ -31,7 +31,7 @@ autogen_submodules() done }
-if [ "$skip_submodules" = 0 ]; then +if [ -z "$skip_submodules" ] || [ "$skip_modules" = 0 ]; then autogen_submodules fi
-- Bazsi
participants (2)
-
Balazs Scheidler
-
Gergely Nagy