diff options
| author | carlsonj <none@none> | 2005-12-01 10:53:59 -0800 |
|---|---|---|
| committer | carlsonj <none@none> | 2005-12-01 10:53:59 -0800 |
| commit | 18b1f5baad0aad087d9cc3c1dddadc40a9c2313e (patch) | |
| tree | 33071b90563f8281d2ce787fe5a7c660afe636e5 | |
| parent | 54e0249cec4d26fd6496e82b90bd3c762bd61b4b (diff) | |
| download | illumos-joyent-18b1f5baad0aad087d9cc3c1dddadc40a9c2313e.tar.gz | |
6356536 single-shot noise introduced by fix for CR 6219031
| -rw-r--r-- | usr/src/uts/Makefile.uts | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr/src/uts/Makefile.uts b/usr/src/uts/Makefile.uts index 3fef6a77c9..93c60af24c 100644 --- a/usr/src/uts/Makefile.uts +++ b/usr/src/uts/Makefile.uts @@ -151,7 +151,9 @@ MODEL = $(MODEL_$(CLASS)) # LHEAD = ( $(ECHO) "\n$@"; -LGREP.2 = egrep -v ' (_init|_fini|_info|_depends_on) ' +# Note: egrep returns "failure" if there are no matches, which is +# exactly the opposite of what we need. +LGREP.2 = if egrep -v ' (_init|_fini|_info|_depends_on) '; then false; else true; fi LTAIL = ) @@ -162,8 +164,6 @@ LINTTAGS_32 += -erroff=E_BAD_PTR_CAST_ALIGN LINTTAGS_32 += -erroff=E_SUPPRESSION_DIRECTIVE_UNUSED LINTTAGS_32 += -erroff=E_SUSPICIOUS_COMPARISON LINTTAGS_32 += -erroff=E_INVALID_ANNOTATION_NAME -LINTTAGS_32 += -erroff=E_OLD_STYLE_DECL_OR_BAD_TYPE -LINTTAGS_32 += -erroff=E_NO_EXPLICIT_TYPE_GIVEN LINTTAGS_32 += -erroff=E_STATIC_UNUSED LINTTAGS_32 += -erroff=E_PTRDIFF_OVERFLOW LINTTAGS_32 += -erroff=E_ASSIGN_NARROW_CONV |
