git: 03f6e1820683 - main - Makefile.libcompat: Sort
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Wed, 02 Feb 2022 21:35:28 UTC
The branch main has been updated by imp: URL: https://cgit.FreeBSD.org/src/commit/?id=03f6e182068362df7e1ca87721b8c01ee17f7928 commit 03f6e182068362df7e1ca87721b8c01ee17f7928 Author: Warner Losh <imp@FreeBSD.org> AuthorDate: 2022-02-02 21:34:29 +0000 Commit: Warner Losh <imp@FreeBSD.org> CommitDate: 2022-02-02 21:34:29 +0000 Makefile.libcompat: Sort Sort MK_BOOT before MK_CTF and remove now-useless NO_LINT while I'm here. Suggested by: brooks, emaste Sponsored by: Netflix --- Makefile.libcompat | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Makefile.libcompat b/Makefile.libcompat index 76ad72483cbf..e1b66f4a6ab2 100644 --- a/Makefile.libcompat +++ b/Makefile.libcompat @@ -25,10 +25,9 @@ LIBCOMPATWMAKEFLAGS+= CC="${XCC} ${LIBCOMPATCFLAGS}" \ CPP="${XCPP} ${LIBCOMPATCFLAGS}" \ DESTDIR=${LIBCOMPATTMP} \ -DNO_CPU_CFLAGS \ + MK_BOOT=no \ MK_CTF=no \ - -DNO_LINT \ - MK_TESTS=no \ - MK_BOOT=no + MK_TESTS=no LIBCOMPATWMAKE+= ${TIME_ENV} ${LIBCOMPATWMAKEENV} ${MAKE} ${LIBCOMPATWMAKEFLAGS} \ OBJTOP=${LIBCOMPAT_OBJTOP} \ OBJROOT='$${OBJTOP}/' \