Use a specific packager for continuous integration builds.

This commit is contained in:
Oliver Tappe
2014-07-03 18:12:07 +02:00
parent 5de87ca904
commit 6f32bafa70
+6 -1
View File
@@ -672,7 +672,12 @@ rule BuildHaikuPortsRepositoryConfig treePath
actions BuildHaikuPortsRepositoryConfig1
{
echo '#PACKAGER="Joe Hacker <[email protected]>"' > $(1)
# use a specific packager for continuous integration builds (buildbot)
if [ "$(HAIKU_CONTINUOUS_INTEGRATION_BUILD)" = "1" ]; then
echo 'PACKAGER="Haiku buildmaster <[email protected]>"' > $(1)
else
echo '#PACKAGER="Joe Hacker <[email protected]>"' > $(1)
fi
cat >> $(1) << EOF
TREE_PATH="$(HAIKU_REPOSITORY_TREE_PATH)"
TARGET_ARCHITECTURE="$(HAIKU_PACKAGING_ARCH)"