diff options
author | Jim Meyering <meyering@redhat.com> | 2009-03-07 16:11:54 +0100 |
---|---|---|
committer | Jim Meyering <meyering@redhat.com> | 2009-03-07 18:12:03 +0100 |
commit | 51b88670cb0434d34ee6d605edc4205629c3d51c (patch) | |
tree | 829863749c49405a5725502fee8dd8704c5af350 | |
parent | 4f526d2d64923dada78f6eb5c5a746a19f6c1807 (diff) | |
download | coreutils-51b88670cb0434d34ee6d605edc4205629c3d51c.tar.xz |
build: allow ./bootstrap --srcdir=... to work with a git submodule
* bootstrap (git_modules_config): Use GIT_CONFIG, not GIT_CONFIG_LOCAL.
The latter was removed in v1.5.6.1-109-gdc87183.
-rwxr-xr-x | bootstrap | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -2,7 +2,7 @@ # Bootstrap this package from checked-out sources. -# Copyright (C) 2003-2008 Free Software Foundation, Inc. +# Copyright (C) 2003-2009 Free Software Foundation, Inc. # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -342,7 +342,7 @@ cleanup_gnulib() { } git_modules_config () { - GIT_CONFIG_LOCAL=.gitmodules git config "$@" + GIT_CONFIG=.gitmodules git config "$@" } # Get gnulib files. |