summaryrefslogtreecommitdiff
path: root/usr/src/tools
diff options
context:
space:
mode:
authorDan McDonald <danmcd@joyent.com>2022-01-20 17:40:59 -0500
committerDan McDonald <danmcd@joyent.com>2022-01-20 17:40:59 -0500
commit2125097d7c0452dce632a1b90348755ba5744f12 (patch)
treef3d49fb0c29db977310de33aba4433126cb0c37f /usr/src/tools
parente6a9d81fcec6b169859244133a26be6cd74b9a03 (diff)
parent1dc4a5921402bdb59d1de1e99e79a3f9d0dd51df (diff)
downloadillumos-joyent-2125097d7c0452dce632a1b90348755ba5744f12.tar.gz
[illumos-gate merge]
commit 1dc4a5921402bdb59d1de1e99e79a3f9d0dd51df 14329 sys/atomic.h: 5066 got the order of ifdef/endif wrong commit 3e8b6b84e5ea96d276f9d6364e9f53b94d58ea00 14205 Want UDP src port hashing for VXLAN commit 417127eb7a4962848176eeecdc1f2fb597c451f2 14384 libsocket: mismatched bound commit 5aaf65b1581c191cf1ecb7151a3ad599f33f45f9 14352 sha1: mismatched bound commit 56acfad3590872afa6b09b3aec90c03ebe17ef21 14404 Build fails if built in 'unused' dir Conflicts: usr/src/uts/common/netinet/udp.h usr/src/uts/common/inet/udp_impl.h usr/src/uts/common/inet/udp/udp_opt_data.c usr/src/uts/common/inet/udp/udp.c usr/src/cmd/truss/print.c
Diffstat (limited to 'usr/src/tools')
-rw-r--r--usr/src/tools/scripts/check_rtime.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/usr/src/tools/scripts/check_rtime.pl b/usr/src/tools/scripts/check_rtime.pl
index 5abbd490d3..363ca62af0 100644
--- a/usr/src/tools/scripts/check_rtime.pl
+++ b/usr/src/tools/scripts/check_rtime.pl
@@ -471,7 +471,7 @@ sub ProcFile {
next;
}
# Look for any unused dependencies.
- if ($UnDep && ($Line =~ /unused/)) {
+ if ($UnDep && ($Line =~ /unused .+=/)) {
# Skip if object is allowed to have unused dependencies
next if defined($EXRE_unused_deps) &&
($RelPath =~ $EXRE_unused_deps);