diff options
author | Jim Meyering <meyering@redhat.com> | 2009-06-28 11:25:13 +0200 |
---|---|---|
committer | Jim Meyering <meyering@redhat.com> | 2009-06-28 11:25:13 +0200 |
commit | f24b82517184351d9b31b5f61dc36743c5f2758c (patch) | |
tree | 50287e6b6040a99621c265917b2415a3ee71f1e9 /bootstrap | |
parent | 07c6f21b81fe6eeabc0bc2a8f468d8e1e08f7959 (diff) | |
download | coreutils-f24b82517184351d9b31b5f61dc36743c5f2758c.tar.xz |
maint: bootstrap: sync submodule usage from gnulib
* bootstrap: Config for git submodule use only if .gitmodules exists.
Diffstat (limited to 'bootstrap')
-rwxr-xr-x | bootstrap | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -342,7 +342,7 @@ cleanup_gnulib() { } git_modules_config () { - GIT_CONFIG=.gitmodules git config "$@" + test -f .gitmodules && git config --file .gitmodules "$@" } # Get gnulib files. |