diff options
author | 2020-12-25 14:30:00 +0000 | |
---|---|---|
committer | 2020-12-25 14:30:00 +0000 | |
commit | 55745ae7b0f20295e4e2b984ff4c9bb92c8cfe63 (patch) | |
tree | f3f2b168b6e5dedb88b0978d55b84df0a02b3ef3 | |
parent | Switch to scapy with python 3. (diff) | |
download | wireguard-openbsd-55745ae7b0f20295e4e2b984ff4c9bb92c8cfe63.tar.xz wireguard-openbsd-55745ae7b0f20295e4e2b984ff4c9bb92c8cfe63.zip |
Missed a python2 in previous commit.
-rw-r--r-- | regress/sbin/slaacd/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/regress/sbin/slaacd/Makefile b/regress/sbin/slaacd/Makefile index d79249b7495..dea89a07a6d 100644 --- a/regress/sbin/slaacd/Makefile +++ b/regress/sbin/slaacd/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.8 2020/12/25 14:25:58 bluhm Exp $ +# $OpenBSD: Makefile,v 1.9 2020/12/25 14:30:00 bluhm Exp $ # The following ports must be installed: # @@ -17,7 +17,7 @@ INTERFACES != sh -c "ifconfig ${PAIR1} 2>/dev/null; \ ifconfig ${PAIR2} 2>/dev/null" || true .endif -.if ! exists(/usr/local/bin/python2) || ! exists(/usr/local/bin/scapy) +.if ! exists(/usr/local/bin/scapy-3) regress: @echo Install py3-scapy package to run this regress. @echo SKIPPED |