freetype-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Git][freetype/freetype][master] Download the latest gnu-config files in


From: suzuki toshiya (@mpsuzuki)
Subject: [Git][freetype/freetype][master] Download the latest gnu-config files in `make dist`.
Date: Fri, 18 Oct 2024 07:39:41 +0000

suzuki toshiya pushed to branch master at FreeType / FreeType

Commits:

  • 0ae7e607
    by Suzuki, Toshiya (鈴木俊哉) at 2024-10-18T14:08:19+09:00
    Download the latest gnu-config files in `make dist`.
    
    * builds/toplevel.mk: In `make dist`, checkout gnu-config
    git repository at savannah, copy the latest versions of
    `config.guess` and `config.sub` to builds/unix/.  Also
    the latest version of `gitlog-to-changelog` is used to
    generate `ChangeLog`.
    

1 changed file:

Changes:

  • builds/toplevel.mk
    ... ... @@ -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


  • reply via email to

    [Prev in Thread] Current Thread [Next in Thread]