diff options
author | Oz Linden <oz@lindenlab.com> | 2014-10-24 10:30:24 -0400 |
---|---|---|
committer | Oz Linden <oz@lindenlab.com> | 2014-10-24 10:30:24 -0400 |
commit | 791839385b9a75995cc30e85d16c9b5efb7539e0 (patch) | |
tree | 1c0bb4339fe05ba7b1a8e5d68c48805d3b826fb2 /BuildParams | |
parent | 80fdd85a0ca3007d84fc696deab408482821c127 (diff) |
document the special packaging parameters, and remove the obsolete uses
Diffstat (limited to 'BuildParams')
-rwxr-xr-x | BuildParams | 23 |
1 files changed, 17 insertions, 6 deletions
diff --git a/BuildParams b/BuildParams index 3ac0d58c2b..695d895341 100755 --- a/BuildParams +++ b/BuildParams @@ -48,13 +48,24 @@ Linux.cxx_version = /usr/bin/g++-4.6 ################################################################ viewer_channel = "Second Life Test" -# Setup default packaging parameters. +################################################################ +# Special packaging parameters. +# These parameters can be used to create additional packages +# which identify themselves in a distinct way with either +# a sourceid (sent to web services) or a channel name (sent to login) +# the default sourceid should always be a null string: sourceid = "" -additional_packages = "Amazon Desura" -Amazon_sourceid = "1207v_Amazon" -Amazon_viewer_channel_suffix = "Amazon" -Desura_sourceid = "1208_desura" -Desura_viewer_channel_suffix = "Desura" +# the additional_packages variable is a blank separated list of package prefixes: +additional_packages = "" +# to set the special values for a package, create variables using each prefix: +# additional_packages = "Foo Bar" +# Foo_sourceid = "bingo" +# Foo_viewer_channel_suffix = "Foo" +# Bar_sourceid = "bongo" +# Bar_viewer_channel_suffix = "Bar" +# the viewer_channel_suffix is prefixed by a blank and then appended to the viewer_channel +# for the package in a setting that overrides the compiled-in value +################################################################ # Notifications - to configure email notices, add a setting like this: # <username>_<reponame>.email = <email-address> |