X-Git-Url: https://git.proxmox.com/?p=mirror_edk2.git;a=blobdiff_plain;f=Tools%2FSource%2FGenBuild%2Forg%2Ftianocore%2Fbuild%2Ffpd%2FPlatformBuildFileGenerator.java;h=e6a1002da3b711bbd0384b719b07a8e9e07bc680;hp=b7d2881d1240134990312b4dd542a3f2f09d84fa;hb=391dbbb1c00daefe78e7e44499d048943ca866ae;hpb=3f7b510edbe3c10b533f36f490e591782d14e929 diff --git a/Tools/Source/GenBuild/org/tianocore/build/fpd/PlatformBuildFileGenerator.java b/Tools/Source/GenBuild/org/tianocore/build/fpd/PlatformBuildFileGenerator.java index b7d2881d12..e6a1002da3 100644 --- a/Tools/Source/GenBuild/org/tianocore/build/fpd/PlatformBuildFileGenerator.java +++ b/Tools/Source/GenBuild/org/tianocore/build/fpd/PlatformBuildFileGenerator.java @@ -53,10 +53,10 @@ public class PlatformBuildFileGenerator { private Project project; private String info = "DO NOT EDIT \n" - + "File auto-generated by build utility\n" + + "This file is auto-generated by the build utility\n" + "\n" + "Abstract:\n" - + "Auto-generated ANT build file for building of EFI Modules/Platforms\n"; + + "Auto-generated ANT build file for building EFI Modules and Platforms\n"; public PlatformBuildFileGenerator(Project project, Map outfiles, boolean isUnified){ this.project = project; @@ -164,7 +164,7 @@ public class PlatformBuildFileGenerator { xformer.setOutputProperty(OutputKeys.INDENT, "yes"); xformer.transform(source, result); } catch (Exception ex) { - throw new BuildException("Generate " + platformName + "_build.xml failed. \n" + ex.getMessage()); + throw new BuildException("Generation of the " + platformName + "_build.xml failed!\n" + ex.getMessage()); } } @@ -351,7 +351,7 @@ public class PlatformBuildFileGenerator { // // Deep Clean Target // - root.appendChild(document.createComment("Clean All target")); + root.appendChild(document.createComment("Target: cleanall")); Element ele = document.createElement("target"); ele.setAttribute("name", "cleanall"); @@ -436,7 +436,7 @@ public class PlatformBuildFileGenerator { // // User Extensions // - root.appendChild(document.createComment("Pre Build Processing")); + root.appendChild(document.createComment("Pre-Build Processing")); Element ele = document.createElement("target"); ele.setAttribute("name", "prebuild"); @@ -480,7 +480,7 @@ public class PlatformBuildFileGenerator { // // User Extensions // - root.appendChild(document.createComment("Post Build Processing")); + root.appendChild(document.createComment("Post-Build Processing")); Element ele = document.createElement("target"); ele.setAttribute("name", "postbuild");