diff options
author | Richard Lowe <richlowe@richlowe.net> | 2020-10-23 14:17:59 -0400 |
---|---|---|
committer | Richard Lowe <richlowe@richlowe.net> | 2020-12-16 16:04:35 -0600 |
commit | 0aaef2f550fa500248f59b0b8a14225b5afbd198 (patch) | |
tree | 386f628ec5125b1d768e18877e1df61898f8466a /usr/src/uts/intel/zfs | |
parent | 1a5f1879be09d3de900b2510692dd12003784d84 (diff) | |
download | illumos-gate-0aaef2f550fa500248f59b0b8a14225b5afbd198.tar.gz |
13258 remove lint from the uts build
Reviewed by: Andy Fiddaman <andy@omniosce.org>
Reviewed by: Jason King <jason.brian.king+illumos@gmail.com>
Approved by: Dan McDonald <danmcd@joyent.com>
Diffstat (limited to 'usr/src/uts/intel/zfs')
-rw-r--r-- | usr/src/uts/intel/zfs/Makefile | 19 |
1 files changed, 2 insertions, 17 deletions
diff --git a/usr/src/uts/intel/zfs/Makefile b/usr/src/uts/intel/zfs/Makefile index 8847b2445f..0ead0381dc 100644 --- a/usr/src/uts/intel/zfs/Makefile +++ b/usr/src/uts/intel/zfs/Makefile @@ -43,8 +43,6 @@ ARCHDIR:sh = cd ..; basename `pwd` # MODULE = zfs OBJECTS = $(ZFS_OBJS:%=$(OBJS_DIR)/%) $(LUA_OBJS:%=$(OBJS_DIR)/%) -# LUA_OBJS are intentionally omitted from LINTS -LINTS = $(ZFS_OBJS:%.o=$(LINTS_DIR)/%.ln) ROOTMODULE = $(ROOT_DRV_DIR)/$(MODULE) ROOTLINK = $(ROOT_FS_DIR)/$(MODULE) CONF_SRCDIR = $(UTSBASE)/common/fs/zfs @@ -58,7 +56,6 @@ include ../Makefile.$(ARCHDIR) # Define targets # ALL_TARGET = $(BINARY) $(SRC_CONFILE) -LINT_TARGET = $(MODULE).lint INSTALL_TARGET = $(BINARY) $(ROOTMODULE) $(ROOTLINK) $(ROOT_CONFFILE) # @@ -77,16 +74,10 @@ INC_PATH += -I$(UTSBASE)/i86pc C99LMODE= -Xc99=%all # -# For now, disable these lint checks; maintainers should endeavor -# to investigate and remove these for maximum lint coverage. +# For now, disable these warnings; maintainers should endeavor +# to investigate and remove these for maximum coverage. # Please do not carry these forward to new Makefiles. # -LINTTAGS += -erroff=E_SUSPICIOUS_COMPARISON -LINTTAGS += -erroff=E_BAD_PTR_CAST_ALIGN -LINTTAGS += -erroff=E_SUPPRESSION_DIRECTIVE_UNUSED -LINTTAGS += -erroff=E_STATIC_UNUSED -LINTTAGS += -erroff=E_PTRDIFF_OVERFLOW -LINTTAGS += -erroff=E_ASSIGN_NARROW_CONV CERRWARN += -_gcc=-Wno-type-limits CERRWARN += -_gcc=-Wno-switch @@ -119,12 +110,6 @@ clean: $(CLEAN_DEPS) clobber: $(CLOBBER_DEPS) -lint: $(LINT_DEPS) - -modlintlib: $(MODLINTLIB_DEPS) - -clean.lint: $(CLEAN_LINT_DEPS) - install: $(INSTALL_DEPS) $(ROOTLINK): $(ROOT_FS_DIR) $(ROOTMODULE) |