diff options
author | Tor Lillqvist <tlillqvist@novell.com> | 2011-04-05 17:41:07 +0300 |
---|---|---|
committer | Tor Lillqvist <tlillqvist@novell.com> | 2011-04-05 17:56:20 +0300 |
commit | 2e705f35c2478a542c04cbccfc2fd227c2047b20 (patch) | |
tree | 3eacab26486d717b876f82d038358a56283cfb8f /scp2 | |
parent | 3f05ea615d1fdea866c3cf47b0e77acce99817be (diff) |
Add two new lines to .versionrc (version.ini on Windows)
"Vendor" with the value of OOO_VENDOR, and "BuildVersion" with the
value of BUILD_VER_STRING. These get their values from the
--with-vendor and --with-build-version switches of the configure
script.
From the build-identification.diff patch, has been part of distro
OOo/LO builds for long.
Diffstat (limited to 'scp2')
-rw-r--r-- | scp2/source/ooo/common_brand.scp | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/scp2/source/ooo/common_brand.scp b/scp2/source/ooo/common_brand.scp index 3bf0366c6313..5f34ebc8d810 100644 --- a/scp2/source/ooo/common_brand.scp +++ b/scp2/source/ooo/common_brand.scp @@ -1197,6 +1197,24 @@ ProfileItem gid_Brand_Profileitem_Version_Useragent Value = "<PRODUCT> (${buildid}; ${_OS}; ${_ARCH}; BundledLanguages=${AllLanguages})"; End +ProfileItem gid_Brand_Profileitem_Version_Vendor + ProfileID = gid_Brand_Profile_Version_Ini; + ModuleID = gid_Module_Root_Brand; + Section = "Version"; + Order = 16; + Key = "Vendor"; + Value = "<vendor>"; +End + +ProfileItem gid_Brand_Profileitem_Version_BuildVersion + ProfileID = gid_Brand_Profile_Version_Ini; + ModuleID = gid_Module_Root_Brand; + Section = "Version"; + Order = 17; + Key = "BuildVersion"; + Value = "<buildversion>"; +End + ProfileItem gid_Brand_Profileitem_Version_Ooobaseversion ProfileID = gid_Brand_Profile_Version_Ini; ModuleID = gid_Module_Root_Brand; |