From 6f32bafa70f2b5ef12a14d4c772be17d85e1c74b Mon Sep 17 00:00:00 2001 From: Oliver Tappe Date: Thu, 3 Jul 2014 17:48:35 +0200 Subject: [PATCH] Use a specific packager for continuous integration builds. --- build/jam/RepositoryRules | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/build/jam/RepositoryRules b/build/jam/RepositoryRules index 0ddec61123..98cdc010d0 100644 --- a/build/jam/RepositoryRules +++ b/build/jam/RepositoryRules @@ -672,7 +672,12 @@ rule BuildHaikuPortsRepositoryConfig treePath actions BuildHaikuPortsRepositoryConfig1 { - echo '#PACKAGER="Joe Hacker "' > $(1) + # use a specific packager for continuous integration builds (buildbot) + if [ "$(HAIKU_CONTINUOUS_INTEGRATION_BUILD)" = "1" ]; then + echo 'PACKAGER="Haiku buildmaster "' > $(1) + else + echo '#PACKAGER="Joe Hacker "' > $(1) + fi cat >> $(1) << EOF TREE_PATH="$(HAIKU_REPOSITORY_TREE_PATH)" TARGET_ARCHITECTURE="$(HAIKU_PACKAGING_ARCH)"