diff options
author | Laszlo Ersek | 2020-09-08 00:05:44 +0200 |
---|---|---|
committer | Philippe Mathieu-Daudé | 2020-09-13 23:03:14 +0200 |
commit | 8befcde37b618bec89445bad6d06cf58ac780753 (patch) | |
tree | 4a6881cd863b24bfd6af8d56165389420df0e2c2 /Makefile | |
parent | Merge remote-tracking branch 'remotes/stsquad/tags/pull-testing-fixes-100920-... (diff) | |
download | qemu-8befcde37b618bec89445bad6d06cf58ac780753.tar.gz qemu-8befcde37b618bec89445bad6d06cf58ac780753.tar.xz qemu-8befcde37b618bec89445bad6d06cf58ac780753.zip |
Makefile: remove obsolete edk2 exception from "clean" rule
The file "BaseTools/Source/Python/UPT/Dll/sqlite3.dll" was removed in edk2
commit 26e2b295ec7a ("BaseTools:Remove unused
BaseTools\Source\Python\UPT\Dll", 2019-05-08), part of edk2-stable201905,
so skipping it in the outermost in-tree "clean" rule is unnecessary.
Remove the obsolete pathname reference.
Cc: Philippe Mathieu-Daudé <philmd@redhat.com>
Ref: https://bugs.launchpad.net/qemu/+bug/1852196
Signed-off-by: Laszlo Ersek <lersek@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Tested-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Message-Id: <20200908072939.30178-2-lersek@redhat.com>
Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 1 |
1 files changed, 0 insertions, 1 deletions
@@ -200,7 +200,6 @@ clean: recurse-clean ninja-clean clean-ctlist find . \( -name '*.so' -o -name '*.dll' -o -name '*.[oda]' \) -type f \ ! -path ./roms/edk2/ArmPkg/Library/GccLto/liblto-aarch64.a \ ! -path ./roms/edk2/ArmPkg/Library/GccLto/liblto-arm.a \ - ! -path ./roms/edk2/BaseTools/Source/Python/UPT/Dll/sqlite3.dll \ -exec rm {} + rm -f TAGS cscope.* *.pod *~ */*~ rm -f fsdev/*.pod scsi/*.pod |