Page MenuHomeFreeBSD

Update OptionalObsoleteFiles.inc after 021385aba562
ClosedPublic

Authored by arichardson on Sep 20 2021, 8:48 AM.
Tags
None
Referenced Files
Unknown Object (File)
Fri, Sep 6, 6:57 PM
Unknown Object (File)
Thu, Sep 5, 8:49 AM
Unknown Object (File)
Mon, Sep 2, 10:50 AM
Unknown Object (File)
Sun, Aug 25, 1:54 AM
Unknown Object (File)
Sat, Aug 24, 7:44 AM
Unknown Object (File)
Aug 22 2024, 9:54 AM
Unknown Object (File)
Aug 16 2024, 7:16 AM
Unknown Object (File)
Aug 5 2024, 10:50 AM

Details

Summary

I forgot to update this file so make delete-old would incorrectly remove
the newly-installed LLVM binutils. While touching the file also update
for 8e1c989abbd1 since ObsoleteFiles.inc now inludes the tablegen binaries.

Reported by: Herbert J. Skuhra <herbert@gojira.at>

Diff Detail

Repository
rG FreeBSD src repository
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

tools/build/mk/OptionalObsoleteFiles.inc
1222

Is && correct? If CLANG is on but LLVM_BINUTILS is not we want to remove them?

tools/build/mk/OptionalObsoleteFiles.inc
1222

If MK_CLANG==yes and MK_LLVM_BINUTILS==no we should keep the files (same for MK_CLANG==no and MK_LLVM_BINUTILS==yes), so this condition should be correct?
Right now they are deleted in the second case.

tools/build/mk/OptionalObsoleteFiles.inc
1222

Oh, right - I misremembered how LLVM_BINUTILS works.

This revision is now accepted and ready to land.Sep 20 2021, 2:04 PM