diff options
author | Bryan Drewery <bdrewery@FreeBSD.org> | 2017-07-08 17:53:00 +0000 |
---|---|---|
committer | Bryan Drewery <bdrewery@FreeBSD.org> | 2017-07-08 17:53:00 +0000 |
commit | 0f827d7a9672979efabcab42248fb192b9621a95 (patch) | |
tree | 658308f145a743e47cebb5e764b0322489f04ce3 | |
parent | 28bbe30cce0aaa24ff0e6e0370e138020e29fe2e (diff) | |
download | src-0f827d7a9672979efabcab42248fb192b9621a95.tar.gz src-0f827d7a9672979efabcab42248fb192b9621a95.zip |
makeman: Don't show META_MODE ABI rebuild warnings.
Reported by: dim
Sponsored by: Dell EMC Isilon
Notes
Notes:
svn path=/head/; revision=320809
-rw-r--r-- | Makefile.inc1 | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile.inc1 b/Makefile.inc1 index ac69125183c4..bba32772cc97 100644 --- a/Makefile.inc1 +++ b/Makefile.inc1 @@ -655,7 +655,8 @@ LIBCOMPAT= SOFT # when the ABI breaks though that we want to force rebuilding WORLDTMP # to get updated host tools. .if ${MK_META_MODE} == "yes" && defined(NO_CLEAN) && \ - !defined(NO_META_IGNORE_HOST) && !defined(NO_META_IGNORE_HOST_HEADERS) + !defined(NO_META_IGNORE_HOST) && !defined(NO_META_IGNORE_HOST_HEADERS) && \ + !make(showconfig) # r318736 - ino64 major ABI breakage META_MODE_BAD_ABI_VERS+= 1200031 |