3 # This code is licensed under the GPL version 2 or later. See
4 # the COPYING file in the top-level directory.
6 substat
=".git-submodule-status"
12 # if --with-git-submodules=ignore, do nothing
13 test "$command" = "ignore" && exit 0
15 test -z "$GIT" && GIT
=git
17 cd "$(dirname "$0")/.."
22 echo "Unable to automatically checkout GIT submodules '$modules'."
23 echo "If you require use of an alternative GIT binary (for example to"
24 echo "enable use of a transparent proxy), then please specify it by"
25 echo "running configure by with the '--with-git' argument. e.g."
27 echo " $ ./configure --with-git='tsocks git'"
29 echo "Alternatively you may disable automatic GIT submodule checkout"
32 echo " $ ./configure --with-git-submodules=validate"
34 echo "and then manually update submodules prior to running make, with:"
36 echo " $ scripts/git-submodule.sh update $modules"
42 if test "$1" = "validate"; then
43 echo "GIT submodules checkout is out of date, and submodules"
44 echo "configured for validate only. Please run"
45 echo " scripts/git-submodule.sh update $maybe_modules"
46 echo "from the source directory or call configure with"
47 echo " --with-git-submodules=update"
48 echo "To disable GIT submodules validation, use"
49 echo " --with-git-submodules=ignore"
55 for m
in $maybe_modules
57 $GIT submodule status
$m 1> /dev
/null
2>&1
62 echo "warn: ignoring non-existent submodule $m"
66 if test -n "$maybe_modules" && ! test -e ".git"
68 echo "$0: unexpectedly called with submodules but no git checkout exists"
74 if test -z "$maybe_modules"
76 test -s ${substat} && validate_error
"$command" ||
exit 0
79 test -f "$substat" || validate_error
"$command"
80 for module
in $modules; do
81 CURSTATUS
=$
($GIT submodule status
$module)
82 OLDSTATUS
=$
(cat $substat |
grep $module)
83 if test "$CURSTATUS" != "$OLDSTATUS"; then
84 validate_error
"$command"
90 if test -z "$maybe_modules"
92 test -e $substat ||
touch $substat
96 $GIT submodule update
--init $modules 1>/dev
/null
97 test $?
-ne 0 && update_error
"failed to update modules"
99 $GIT submodule status
$modules > "${substat}"
100 test $?
-ne 0 && update_error
"failed to save git submodule status" >&2