Ticket #10006: 0001-Replace-alpha-profiles-with-release-.-Remove-beta.patch

File 0001-Replace-alpha-profiles-with-release-.-Remove-beta.patch, 1.9 KB (added by mmadia, 11 years ago)
  • build/jam/DefaultBuildProfiles

    From 4d89fff7bbe8efe4ded3eaad61e484ad01d0d039 Mon Sep 17 00:00:00 2001
    From: Matt Madia <mattmadia@gmail.com>
    Date: Sun, 22 Sep 2013 14:34:03 -0400
    Subject: [PATCH] Replace alpha-* profiles with release-*. Remove beta-*.
    
    ---
     build/jam/DefaultBuildProfiles | 20 ++++++++++----------
     1 file changed, 10 insertions(+), 10 deletions(-)
    
    diff --git a/build/jam/DefaultBuildProfiles b/build/jam/DefaultBuildProfiles
    index 5560540..c59aacb 100644
    a b switch $(HAIKU_BUILD_PROFILE) {  
    77
    88rule DefineDefaultBuildProfiles
    99{
    10     # alpha release profiles
    11     DefineBuildProfile alpha-raw : image : "haiku-alpha.image" ;
    12     DefineBuildProfile alpha-vmware : vmware-image : "haiku-alpha.vmdk" ;
    13     DefineBuildProfile alpha-cd : cd-image : "haiku-alpha.iso" ;
    14     DefineBuildProfile alpha-anyboot : anyboot-image
    15         : "haiku-alpha-anyboot.image" ;
     10    # release profiles
     11    DefineBuildProfile release-raw : image : "haiku-release.image" ;
     12    DefineBuildProfile release-vmware : vmware-image : "haiku-release.vmdk" ;
     13    DefineBuildProfile release-cd : cd-image : "haiku-release.iso" ;
     14    DefineBuildProfile release-anyboot : anyboot-image
     15        : "haiku-release-anyboot.image" ;
    1616
    1717    # nightly profiles
    1818    DefineBuildProfile nightly-raw : image : "haiku-nightly.image" ;
    rule DefineDefaultBuildProfiles  
    2727        : "haiku-bootstrap.vmdk" ;
    2828
    2929    switch $(HAIKU_BUILD_PROFILE) {
    30         case "alpha-*" : {
    31             Echo Building Haiku R1/alpha ;
     30        case "release-*" : {
     31            Echo Building Haiku R1/development preview ;
    3232            HAIKU_ROOT_USER_NAME = user ;
    3333            HAIKU_ROOT_USER_REAL_NAME = "Yourself" ;
    3434            AddGroupToHaikuImage party : 101 : user sshd ;
    rule DefineDefaultBuildProfiles  
    8080                Welcome ;
    8181        }
    8282
    83         case "beta-*" : {
    84             Echo You wish. ;
     83        case "alpha-*" : {
     84            Echo The alpha-* build profiles have been renamed to release-* ;
    8585        }
    8686
    8787        case "nightly-*" : {