зеркало из https://github.com/mozilla/gecko-dev.git
Treat the GRE ID as a string. Bug #195840 r=dougt
This commit is contained in:
Родитель
c19fc0a9be
Коммит
504a1322b1
|
@ -126,11 +126,11 @@ sub SubstituteBuildNumber($$$) {
|
|||
}
|
||||
elsif ($id =~ "GRE_BUILD_ID") {
|
||||
if (defined($ENV{'MOZ_MILESTONE_RELEASE'})) {
|
||||
$temp = "GRE_BUILD_ID " . $milestone;
|
||||
$temp = "GRE_BUILD_ID \"$milestone\"";
|
||||
} else {
|
||||
$temp = "GRE_BUILD_ID " . "${milestone}_${build}";
|
||||
$temp = "GRE_BUILD_ID \"${milestone}_${build}\"";
|
||||
}
|
||||
$id =~ s/GRE_BUILD_ID\s\d+/$temp/;
|
||||
$id =~ s/GRE_BUILD_ID\s\"\d+\"/$temp/;
|
||||
print $OUTFILE $id;
|
||||
}
|
||||
else {
|
||||
|
|
|
@ -17,7 +17,7 @@
|
|||
* GRE_BUILD_ID will just contain <milestone>.
|
||||
*
|
||||
*/
|
||||
#define GRE_BUILD_ID 00000000000
|
||||
#define GRE_BUILD_ID "00000000000"
|
||||
|
||||
#endif /* _NSBUILDID_H_ */
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче