Changeset fbbe081 for BLFS/Makefile


Ignore:
Timestamp:
04/28/2021 03:08:30 PM (3 years ago)
Author:
Pierre Labastie <pierre.labastie@…>
Branches:
ablfs-more, legacy, trunk
Children:
f538085
Parents:
1e686d1
Message:

Move to git: Change url and var names in BLFS/Makefile

Note that only trunk is accessible in the Makefile. Other branches
wil be made accessible later.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • BLFS/Makefile

    r1e686d1 rfbbe081  
    5757endef
    5858
    59 LFS-SVN = svn://svn.linuxfromscratch.org/LFS/trunk/BOOK
    60 SVN = svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK
     59LFS-GIT = git://git.linuxfromscratch.org/lfs.git
     60GIT = git://git.linuxfromscratch.org/blfs.git
    6161
    6262ALLXML := $(filter-out $(RENDERTMP)/%, \
     
    181181update: $(BLFS_XML) $(LFS_XML)
    182182        @echo Updating the book sources
    183         $(Q)cd $(LFS_XML) && svn up
    184         $(Q)cd $(BLFS_XML) && svn up
     183        $(Q)cd $(LFS_XML) && git pull
     184        $(Q)cd $(BLFS_XML) && git pull
    185185
    186186$(LFS_XML):
    187187        @echo Getting the LFS book sources...
    188         $(Q)svn co $(LFS-SVN) $@
     188        $(Q)git clone $(LFS-GIT) $@
    189189
    190190$(BLFS_XML):
    191191        @echo Getting the BLFS book sources...
    192         $(Q)svn co $(SVN) $@
     192        $(Q)git clone $(GIT) $@
    193193
    194194# Clean up
Note: See TracChangeset for help on using the changeset viewer.