Mac installer: Update copyright notice from 2009 to 2012

svn path=/trunk/boinc/; revision=25306
This commit is contained in:
Charlie Fenton 2012-02-21 01:22:59 +00:00
parent 89778d8751
commit f5a7d78e85
2 changed files with 7 additions and 1 deletions

View File

@ -1963,3 +1963,9 @@ Charlie 20 Feb 2012
configure.ac
version.h
Charlie 20 Feb 2012
- Mac installer: Update copyright notice from 2009 to 2012.
clientgui/
mac/
SetVersion.cpp

View File

@ -108,7 +108,7 @@ int FixInfoPlist_Strings(char* myPath, char* brand) {
fprintf(f, "/* Localized versions of Info.plist keys */\n\n");
fprintf(f, "CFBundleName = \"%s\";\n", brand);
fprintf(f, "CFBundleShortVersionString = \"%s version %s\";\n", brand, BOINC_VERSION_STRING);
fprintf(f, "CFBundleGetInfoString = \"%s version %s, Copyright 2009 University of California.\";\n", brand, BOINC_VERSION_STRING);
fprintf(f, "CFBundleGetInfoString = \"%s version %s, Copyright 2012 University of California.\";\n", brand, BOINC_VERSION_STRING);
fflush(f);
retval = fclose(f);
}