diff options
author | Jordan Justen <jordan.l.justen@intel.com> | 2015-06-01 23:21:00 +0000 |
---|---|---|
committer | jljusten <jljusten@Edk2> | 2015-06-01 23:21:00 +0000 |
commit | c85bc0c9d425c04055496fd2111e12ab3471ef31 (patch) | |
tree | 8b1808cbfc9124ac744bace1ee30cacab05bfab5 /BaseTools/Conf/build_rule.template | |
parent | d4848bb9df060fec042db4d216642f7c3e963d1b (diff) | |
download | edk2-platforms-c85bc0c9d425c04055496fd2111e12ab3471ef31.tar.xz |
BaseTools/Conf: Don't support upper case nasm extensions
For *.asm and *.s, there have been cases of *.Asm and *.S files, but
since the nasm extensions are new, we don't need to support the upper
case extensions.
In other words, remove .Nasm and .NASM.
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Jordan Justen <jordan.l.justen@intel.com>
Reviewed-by: Liming Gao <liming.gao@intel.com>
git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@17544 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'BaseTools/Conf/build_rule.template')
-rw-r--r-- | BaseTools/Conf/build_rule.template | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/BaseTools/Conf/build_rule.template b/BaseTools/Conf/build_rule.template index f1edf3a2f4..e5467cc455 100644 --- a/BaseTools/Conf/build_rule.template +++ b/BaseTools/Conf/build_rule.template @@ -194,7 +194,7 @@ [Nasm-Assembly-Code-File.COMMON.COMMON]
<InputFile>
- ?.nasm, ?.Nasm, ?.NASM
+ ?.nasm
<ExtraDependency>
$(MAKE_FILE)
@@ -479,7 +479,7 @@ [Nasm-to-Binary-Code-File]
<InputFile>
- ?.nasmb, ?.NASMB
+ ?.nasmb
<ExtraDependency>
$(MAKE_FILE)
|