summaryrefslogtreecommitdiff
path: root/Tools
diff options
context:
space:
mode:
authorjwang36 <jwang36@6f19259b-4bc3-4df7-8a09-765794883524>2006-07-11 10:06:26 +0000
committerjwang36 <jwang36@6f19259b-4bc3-4df7-8a09-765794883524>2006-07-11 10:06:26 +0000
commit7f6dd3e3716c6baa0b044fe4c7d63bb2f713a56c (patch)
treeef0ab167806a0a9e078a646392d82e63969b63ed /Tools
parent92e2937805abc97f7445217c77315cc1d51a8c60 (diff)
downloadedk2-platforms-7f6dd3e3716c6baa0b044fe4c7d63bb2f713a56c.tar.xz
Commented out the throwing exception when not supported file type is found, because we should just skip those files which cannot be built by certain tools.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@876 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'Tools')
-rw-r--r--Tools/Source/GenBuild/org/tianocore/build/FileProcess.java2
1 files changed, 2 insertions, 0 deletions
diff --git a/Tools/Source/GenBuild/org/tianocore/build/FileProcess.java b/Tools/Source/GenBuild/org/tianocore/build/FileProcess.java
index e0a0fff2d5..28ebfc8d35 100644
--- a/Tools/Source/GenBuild/org/tianocore/build/FileProcess.java
+++ b/Tools/Source/GenBuild/org/tianocore/build/FileProcess.java
@@ -163,9 +163,11 @@ public class FileProcess {
parseFile(filename, fileTypes[i][2], root);
}
}
+ /*
if (!flag) {
throw new BuildException("File [" + filename + "] is not known from its suffix.");
}
+ */
}
/**