diff options
author | Alexander Bluhm <bluhm@cvs.openbsd.org> | 2020-12-25 14:30:01 +0000 |
---|---|---|
committer | Alexander Bluhm <bluhm@cvs.openbsd.org> | 2020-12-25 14:30:01 +0000 |
commit | 62a156a1cd032e0b6e67f935a40a319bf73c803a (patch) | |
tree | c42f5273578f6cbf77d881289082104d0139c288 | |
parent | 267aeb6b90184505fce826bfe632dbc7f8490f04 (diff) |
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 |