diff options
author | Sebastian Benoit <benno@cvs.openbsd.org> | 2018-09-06 15:55:31 +0000 |
---|---|---|
committer | Sebastian Benoit <benno@cvs.openbsd.org> | 2018-09-06 15:55:31 +0000 |
commit | e1ead2b1a7f9b89636f4faead3542271fac32791 (patch) | |
tree | 84c26ab42df2e28ced01ab5a66ca77d6977e3679 | |
parent | 34e6983c0328b2fe5fce992dfc159e81cc5910ff (diff) |
get rid of a temp file, noted by claudio@
-rw-r--r-- | regress/usr.sbin/bgpd/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/regress/usr.sbin/bgpd/Makefile b/regress/usr.sbin/bgpd/Makefile index ae73d8143e8..84bc623dafc 100644 --- a/regress/usr.sbin/bgpd/Makefile +++ b/regress/usr.sbin/bgpd/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.2 2018/09/06 15:16:01 benno Exp $ +# $OpenBSD: Makefile,v 1.3 2018/09/06 15:55:30 benno Exp $ BGPDTESTS=1 2 @@ -28,8 +28,8 @@ bgpd-example: # check that the output of bgpd -nvv is parseable bgpd-printconf: - bgpd -nvf ${.CURDIR}/bgpd.conf.printconf > bgpd.conf.printconf.test - bgpd -nf bgpd.conf.printconf.test + bgpd -nvf ${.CURDIR}/bgpd.conf.printconf | \ + bgpd -nf /dev/stdin clean: rm -f bgpd.conf.printconf.test |