diff options
author | Jessica Clarke <jrtc27@FreeBSD.org> | 2023-01-29 23:17:39 +0000 |
---|---|---|
committer | Jessica Clarke <jrtc27@FreeBSD.org> | 2023-01-29 23:53:04 +0000 |
commit | b78ae0367fffcd127673cc61b4c6884479ccd86d (patch) | |
tree | d45192d23a49c1f0bff8dac56ebe5fb663aa96a2 /tools/build | |
parent | 35921bba736a017061c1e3d7b6f3e9c5a4726cda (diff) | |
download | src-b78ae0367fffcd127673cc61b4c6884479ccd86d.tar.gz src-b78ae0367fffcd127673cc61b4c6884479ccd86d.zip |
Revert "tools/build: Unbreak bmake bootstrap on Linux"
Now that make.py no longer has the described hack on Linux we can drop
this ugly workaround.
This reverts commit fba998a3d897e6297baca74068e4ec1db7adaeec.
Diffstat (limited to 'tools/build')
-rw-r--r-- | tools/build/cross-build/include/common/sys/types.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/tools/build/cross-build/include/common/sys/types.h b/tools/build/cross-build/include/common/sys/types.h index 0bfe2bac2aea..82436e7e9224 100644 --- a/tools/build/cross-build/include/common/sys/types.h +++ b/tools/build/cross-build/include/common/sys/types.h @@ -69,15 +69,7 @@ struct cap_rights; typedef struct cap_rights cap_rights_t; -/* - * make.py uses these headers during the bmake bootstrap on Linux only, at - * which point sys/bitcount.h won't yet exist, so don't include it there. - * - * TODO: Untangle this mess. - */ -#if __has_include(<sys/bitcount.h>) /* Needed for bitstring */ #include <sys/bitcount.h> -#endif #endif |