summaryrefslogtreecommitdiff
path: root/regress/usr.bin/xlint
diff options
context:
space:
mode:
authorChad Loder <cloder@cvs.openbsd.org>2005-12-09 03:36:15 +0000
committerChad Loder <cloder@cvs.openbsd.org>2005-12-09 03:36:15 +0000
commit4ee4469ecfb764b1369435ff2f445fd9d6bbd0eb (patch)
treef3014673d1c0ae79871f6303e8dd5b4da6e1e581 /regress/usr.bin/xlint
parent9c4f20376d34330977e6a9eaac16c930016534f9 (diff)
Reverse order of diff so that output makes more sense. kjell said he
would commit this but he is too much of a slacker.
Diffstat (limited to 'regress/usr.bin/xlint')
-rw-r--r--regress/usr.bin/xlint/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/regress/usr.bin/xlint/Makefile b/regress/usr.bin/xlint/Makefile
index b5d60539a35..68f0d66fd93 100644
--- a/regress/usr.bin/xlint/Makefile
+++ b/regress/usr.bin/xlint/Makefile
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile,v 1.11 2005/12/03 01:04:06 cloder Exp $
+# $OpenBSD: Makefile,v 1.12 2005/12/09 03:36:14 cloder Exp $
TEST_MODULES= 1 2 3 4 5 6 7 8 9 10 11
LINT= lint
@@ -7,7 +7,7 @@ LINTFLAGS?= -chapbx
.for i in ${TEST_MODULES}
REGRESS_TARGETS+= test-${i}
test-${i}:
- ${LINT} ${LINTFLAGS} test-${i}.c 2>&1 | diff -u - ${.CURDIR}/test-${i}.c.exp
+ ${LINT} ${LINTFLAGS} test-${i}.c 2>&1 | diff -u ${.CURDIR}/test-${i}.c.exp -
.endfor
.PHONY: ${REGRESS_TARGETS}