diff options
author | alfred <alfred@6f19259b-4bc3-4df7-8a09-765794883524> | 2006-08-14 06:47:58 +0000 |
---|---|---|
committer | alfred <alfred@6f19259b-4bc3-4df7-8a09-765794883524> | 2006-08-14 06:47:58 +0000 |
commit | 7b086bab60be422ae5417d3c801356aa162ab6f9 (patch) | |
tree | 819c773fc25cd8118c3f3024dc437cb8b76b0eb2 | |
parent | fb840aa8f7471de18152ed8531a862033e21a56f (diff) | |
download | edk2-platforms-7b086bab60be422ae5417d3c801356aa162ab6f9.tar.xz |
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@1251 6f19259b-4bc3-4df7-8a09-765794883524
-rw-r--r-- | Tools/Source/MigrationTools/org/tianocore/migration/ModuleInfo.java | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Tools/Source/MigrationTools/org/tianocore/migration/ModuleInfo.java b/Tools/Source/MigrationTools/org/tianocore/migration/ModuleInfo.java index e40b5f82e5..3576578202 100644 --- a/Tools/Source/MigrationTools/org/tianocore/migration/ModuleInfo.java +++ b/Tools/Source/MigrationTools/org/tianocore/migration/ModuleInfo.java @@ -71,6 +71,10 @@ public class ModuleInfo { } else if (list[i].contains(".h") || list[i].contains(".H")) {
localmodulesources.add(list[i]);
localmoduleheaders.add(list[i]); //the case that several .inf or .msa found is not concerned
+ } else if (list[i].contains(".dxs")) {
+ localmodulesources.add(list[i]);
+ } else if (list[i].contains(".uni")) {
+ localmodulesources.add(list[i]);
} else if (list[i].contains(".inf")) {
if (ui.yesOrNo("Found .inf file : " + list[i] + "\nUse this file as this module's .inf ?")) {
hasInf = true;
|