diff options
author | Vladimir Kotal <Vladimir.Kotal@Sun.COM> | 2009-01-19 10:12:56 +0100 |
---|---|---|
committer | Vladimir Kotal <Vladimir.Kotal@Sun.COM> | 2009-01-19 10:12:56 +0100 |
commit | 16070783c69283175b84d52ad8b44be53e5fcdd5 (patch) | |
tree | 1f5c363e46cf711cfe0e97848512699c7f4b0761 /usr/src/cmd/ipf | |
parent | fee10f98aa3a4d0aa6ad4ea7c00c6de7a12453d5 (diff) | |
download | illumos-gate-16070783c69283175b84d52ad8b44be53e5fcdd5.tar.gz |
6617470 ipftest is reported as false positive by wsdiff
Diffstat (limited to 'usr/src/cmd/ipf')
-rw-r--r-- | usr/src/cmd/ipf/tools/Makefile.tools | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/usr/src/cmd/ipf/tools/Makefile.tools b/usr/src/cmd/ipf/tools/Makefile.tools index 4b171b1b6a..71f81169f1 100644 --- a/usr/src/cmd/ipf/tools/Makefile.tools +++ b/usr/src/cmd/ipf/tools/Makefile.tools @@ -19,12 +19,9 @@ # CDDL HEADER END # # -# Copyright 2008 Sun Microsystems, Inc. All rights reserved. +# Copyright 2009 Sun Microsystems, Inc. All rights reserved. # Use is subject to license terms. # -# -# ident "%Z%%M% %I% %E% SMI" -# PROG= ipf ipfs ipmon ipnat ippool ipfstat IPFPROG= ipftest @@ -227,13 +224,19 @@ clean: lint: lint_SRCS -%.o: $(SRC)/uts/common/inet/ipf/%.c +# +# NOTE: all rules must use relative paths otherwise absolute paths will be +# embedded into the binaries making them false positives and +# reported by wsdiff +# + +%.o: ../../../../uts/common/inet/ipf/%.c $(COMPILE.c) $< %.o: ../%.c $(COMPILE.c) $< -%.o: $(SRC)/common/net/patricia/%.c +%.o: ../../../../common/net/patricia/%.c $(COMPILE.c) $< include ../../../Makefile.targ |