diff options
author | 2005-12-30 16:41:23 +0000 | |
---|---|---|
committer | 2005-12-30 16:41:23 +0000 | |
commit | f16068f443d1c24abe39d2f495ba28d3a1e7c8c5 (patch) | |
tree | 7bf14e0d93803a27912cc7832f58813165ddaf00 | |
parent | Remove unused attr_optlen() (diff) | |
download | wireguard-openbsd-f16068f443d1c24abe39d2f495ba28d3a1e7c8c5.tar.xz wireguard-openbsd-f16068f443d1c24abe39d2f495ba28d3a1e7c8c5.zip |
Disable lint for libraries.
ok deraadt@ espie@
-rw-r--r-- | Makefile.cross | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile.cross b/Makefile.cross index ab485cd103f..33937a7e404 100644 --- a/Makefile.cross +++ b/Makefile.cross @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile.cross,v 1.12 2005/09/18 20:42:49 drahn Exp $ +# $OpenBSD: Makefile.cross,v 1.13 2005/12/30 16:41:23 grange Exp $ cross-tools: cross-includes cross-binutils cross-gcc cross-lib cross-distrib: cross-tools cross-bin cross-etc-root-var @@ -248,11 +248,11 @@ cross-lib: ${CROSSGCC} for lib in csu libc; do \ (cd $$lib; \ eval ${CROSSENV} MAKEOBJDIR=obj.${MACHINE}.${TARGET} \ - ${MAKE} depend all install); \ + ${MAKE} WANTLINT=no depend all install); \ done; \ eval ${CROSSENV} MAKEOBJDIR=obj.${MACHINE}.${TARGET} \ SKIPDIR=\"${NO_CROSS} libocurses/PSD.doc\" \ - ${MAKE} depend all install) + ${MAKE} WANTLINT=no depend all install) cross-bin: ${CROSSOBJ} MACHINE=${TARGET} MACHINE_ARCH=${TARGET_ARCH}; \ |