diff options
author | Florian Obser <florian@cvs.openbsd.org> | 2017-10-11 17:17:04 +0000 |
---|---|---|
committer | Florian Obser <florian@cvs.openbsd.org> | 2017-10-11 17:17:04 +0000 |
commit | 1aa4b6c7db90fa92a8fa6d22283e02afeaf520bd (patch) | |
tree | 1da1784e8215c11e195b79b51c786f503e6f9edc /regress/sbin/slaacd/Makefile | |
parent | 78c572944bf653c6bf7d24dffaf140745b31e02c (diff) |
don't create pyc files
Diffstat (limited to 'regress/sbin/slaacd/Makefile')
-rw-r--r-- | regress/sbin/slaacd/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/regress/sbin/slaacd/Makefile b/regress/sbin/slaacd/Makefile index c5016d1e21d..0c9149e5de9 100644 --- a/regress/sbin/slaacd/Makefile +++ b/regress/sbin/slaacd/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.2 2017/08/25 20:10:17 florian Exp $ +# $OpenBSD: Makefile,v 1.3 2017/10/11 17:17:03 florian Exp $ # The following ports must be installed: # @@ -40,9 +40,9 @@ regress: # Set variables so that make runs with and without obj directory. # Only do that if necessary to keep visible output short. .if ${.CURDIR} == ${.OBJDIR} -PYTHON = python2.7 ./ +PYTHON = python2.7 -B ./ .else -PYTHON = python2.7 ${.CURDIR}/ +PYTHON = python2.7 -B ${.CURDIR}/ .endif setup: |