Replace alpha-* profiles with release-*. Remove beta-*.

This commit is contained in:
Matt Madia 2013-11-23 16:49:10 +01:00 committed by Ingo Weinhold
parent 4494d99eba
commit 54de8bbe8f
1 changed files with 10 additions and 10 deletions

View File

@ -7,12 +7,12 @@ switch $(HAIKU_BUILD_PROFILE) {
rule DefineDefaultBuildProfiles rule DefineDefaultBuildProfiles
{ {
# alpha release profiles # release profiles
DefineBuildProfile alpha-raw : image : "haiku-alpha.image" ; DefineBuildProfile release-raw : image : "haiku-release.image" ;
DefineBuildProfile alpha-vmware : vmware-image : "haiku-alpha.vmdk" ; DefineBuildProfile release-vmware : vmware-image : "haiku-release.vmdk" ;
DefineBuildProfile alpha-cd : cd-image : "haiku-alpha.iso" ; DefineBuildProfile release-cd : cd-image : "haiku-release.iso" ;
DefineBuildProfile alpha-anyboot : anyboot-image DefineBuildProfile release-anyboot : anyboot-image
: "haiku-alpha-anyboot.image" ; : "haiku-release-anyboot.image" ;
# nightly profiles # nightly profiles
DefineBuildProfile nightly-raw : image : "haiku-nightly.image" ; DefineBuildProfile nightly-raw : image : "haiku-nightly.image" ;
@ -27,8 +27,8 @@ rule DefineDefaultBuildProfiles
: "haiku-bootstrap.vmdk" ; : "haiku-bootstrap.vmdk" ;
switch $(HAIKU_BUILD_PROFILE) { switch $(HAIKU_BUILD_PROFILE) {
case "alpha-*" : { case "release-*" : {
Echo Building Haiku R1/alpha ; Echo Building Haiku R1/development preview ;
HAIKU_ROOT_USER_NAME ?= user ; HAIKU_ROOT_USER_NAME ?= user ;
HAIKU_ROOT_USER_REAL_NAME ?= "Yourself" ; HAIKU_ROOT_USER_REAL_NAME ?= "Yourself" ;
AddGroupToHaikuImage party : 101 : user sshd ; AddGroupToHaikuImage party : 101 : user sshd ;
@ -75,8 +75,8 @@ rule DefineDefaultBuildProfiles
Welcome ; Welcome ;
} }
case "beta-*" : { case "alpha-*" : {
Echo You wish. ; Echo The alpha-* build profiles have been renamed to release-* ;
} }
case "nightly-*" : { case "nightly-*" : {