Changeset c4ad7bf


Ignore:
Timestamp:
05/08/2014 04:05:31 PM (10 years ago)
Author:
Pierre Labastie <pierre@…>
Branches:
2.4, ablfs-more, legacy, new_features, trunk
Children:
ff9938f
Parents:
c6ee8ea
Message:

Make the use of branches clearer, and allow branches to be used
for CLFS

Files:
2 edited

Legend:

Unmodified
Added
Removed
  • Config.in

    rc6ee8ea rc4ad7bf  
    6666
    6767        config  BRANCH_ID
    68                 string  "Book Version (mandatory)"
     68                string  "Stable Version or branch (preceded by branch-)"
    6969                default "**EDIT ME**"
    7070                depends BRANCH
    7171                help
    72                         #-- A list of valid branches and stable book IDs is available here.
     72                        #-- A list of valid branches and stable book IDs is available here:
    7373                        #   http://wiki.linuxfromscratch.org/alfs/wiki/SupportedBooks
     74                        #   Enter branch-XXX for branch XXX, and just YYY for tag YYY or
     75                        #   stable YYY version
    7476
    7577        config  BOOK
  • jhalfs

    rc6ee8ea rc4ad7bf  
    162162    case $PROGNAME in
    163163      clfs* ) TREE="" ;;
    164            *) TREE=trunk/BOOK ;;
     164          * ) TREE=trunk/BOOK ;;
    165165    esac
    166166    LFSVRS=development
     
    170170            exit 2 ;;
    171171  branch-* )
    172     LFSVRS=${BRANCH_ID}
    173     TREE=branches/${BRANCH_ID#branch-}/BOOK
     172    case $PROGNAME in
     173      lfs )
     174        LFSVRS=${BRANCH_ID}
     175        TREE=branches/${BRANCH_ID#branch-}/BOOK
     176        ;;
     177      clfs* )
     178        LFSVRS=${BRANCH_ID}
     179        TREE=${BRANCH_ID#branch-}
     180        ;;
     181    esac
    174182    ;;
    175183  * )
Note: See TracChangeset for help on using the changeset viewer.