... |
... |
@@ -274,12 +274,16 @@ dist: |
274
|
274
|
# GNU `config' git repository), relative to the `tmp' directory used during
|
275
|
275
|
# `make dist'.
|
276
|
276
|
#
|
277
|
|
-CONFIG_GUESS = ~/git/config/config.guess
|
278
|
|
-CONFIG_SUB = ~/git/config/config.sub
|
|
277
|
+# GNU_CONFIG_GIT_URL = git://git.savannah.gnu.org/config.git
|
|
278
|
+GNU_CONFIG_GIT_URL = https://git.savannah.gnu.org/git/config.git
|
|
279
|
+GNU_CONFIG_DESTDIR = $(TOP_DIR)/subprojects/gnu-config
|
|
280
|
+
|
|
281
|
+CONFIG_GUESS = $(GNU_CONFIG_DESTDIR)/config.guess
|
|
282
|
+CONFIG_SUB = $(GNU_CONFIG_DESTDIR)/config.sub
|
279
|
283
|
|
280
|
284
|
# We also use this repository to access the gnulib script that converts git
|
281
|
285
|
# commit messages to a ChangeLog file.
|
282
|
|
-CHANGELOG_SCRIPT = ~/git/config/gitlog-to-changelog
|
|
286
|
+CHANGELOG_SCRIPT = $(GNU_CONFIG_DESTDIR)/gitlog-to-changelog
|
283
|
287
|
|
284
|
288
|
|
285
|
289
|
# Don't say `make do-dist'. Always use `make dist' instead.
|
... |
... |
@@ -295,6 +299,8 @@ do-dist: distclean refdoc |
295
|
299
|
sh autogen.sh
|
296
|
300
|
rm -rf $(TOP_DIR)/builds/unix/autom4te.cache
|
297
|
301
|
|
|
302
|
+ rm -rf $(GNU_CONFIG_DESTDIR)
|
|
303
|
+ git clone https://git.savannah.gnu.org/git/config.git $(GNU_CONFIG_DESTDIR)
|
298
|
304
|
cp $(CONFIG_GUESS) $(TOP_DIR)/builds/unix
|
299
|
305
|
cp $(CONFIG_SUB) $(TOP_DIR)/builds/unix
|
300
|
306
|
|
... |
... |
@@ -312,5 +318,6 @@ do-dist: distclean refdoc |
312
|
318
|
|
313
|
319
|
@# Remove more stuff related to git.
|
314
|
320
|
rm -rf $(TOP_DIR)/subprojects/dlg
|
|
321
|
+ rm -rf $(TOP_DIR)/subprojects/gnu-config
|
315
|
322
|
|
316
|
323
|
# EOF |