Skip to content

Commit

Permalink
bootstrap: by default the submodules are initialized
Browse files Browse the repository at this point in the history
use "nosubmodule" to skip setting up submodules.

Signed-off-by: Øyvind Harboe <[email protected]>
  • Loading branch information
oharboe committed Dec 22, 2010
1 parent 07dcb5a commit 37f4978
Showing 1 changed file with 10 additions and 7 deletions.
17 changes: 10 additions & 7 deletions bootstrap
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,15 @@ automake --gnu --add-missing --copy
# 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

if [ -n $1 ] || [ $1 != nosubmodule ]
then
echo "Setting up submodules"
git submodule init
git submodule update
else
echo "Skipping submodule setup"
fi

echo "Bootstrap complete. Quick start build instructions:"
echo ""
echo "1. Fetch Jim Tcl"
echo ""
echo "git submodule init"
echo "git submodule update"
echo ""
echo "2. Configure"
echo "./configure --enable-maintainer-mode ...."

0 comments on commit 37f4978

Please sign in to comment.