Fix all warnings emitted in make kernel-toolchain

With this change and D27598 make kernel-toolchain no longer emits any
warnings for me.

Reviewed By:	emaste
Differential Revision: https://reviews.freebsd.org/D27599
This commit is contained in:
Alex Richardson 2021-01-06 17:51:03 +00:00 committed by Alex Richardson
parent 7b0d3a3ccf
commit ed8455806e
2 changed files with 8 additions and 4 deletions

View File

@ -74,7 +74,9 @@ static const char *filename;
static void usage(void) __dead2;
static void scanfiles(char *argv[], int cooked);
#ifndef BOOTSTRAP_CAT
static void cook_cat(FILE *);
#endif
static void raw_cat(int);
#ifndef NO_UDOM_SUPPORT
@ -178,11 +180,13 @@ usage(void)
}
static void
scanfiles(char *argv[], int cooked)
scanfiles(char *argv[], int cooked __unused)
{
int fd, i;
char *path;
#ifndef BOOTSTRAP_CAT
FILE *fp;
#endif
i = 0;
fd = -1;

View File

@ -105,9 +105,6 @@ INCS+= libcasper.h
# not match.
RPCINCS+= ${SRCTOP}/sys/rpc/types.h
.if ${.MAKE.OS} != "FreeBSD"
.PATH: ${.CURDIR}/cross-build
INCS+= ${SRCTOP}/include/mpool.h
INCS+= ${SRCTOP}/include/ndbm.h
INCS+= ${SRCTOP}/include/err.h
@ -143,6 +140,9 @@ INCS+= ${SRCTOP}/include/nlist.h
SYSINCS+= ${SRCTOP}/sys/sys/imgact_aout.h
SYSINCS+= ${SRCTOP}/sys/sys/nlist_aout.h
.if ${.MAKE.OS} != "FreeBSD"
.PATH: ${.CURDIR}/cross-build
# dbopen() behaves differently on Linux and FreeBSD so we ensure that we
# bootstrap the FreeBSD db code. The cross-build headers #define dbopen() to
# __freebsd_dbopen() so that we don't ever use the host version