openbsd-ports/x11/terminator/patches/patch-run_tests
mariani e42353cb30 Update x11/terminator 1.91 to 1.91
- Use github as MASTER_SITES.
- Update HOMEPAGE.
- Switch to python3.

Tested OK on amd64.

Help and comments from sthen@ bket@
OK bket@
2020-09-10 13:47:46 +00:00

15 lines
402 B
Plaintext

$OpenBSD: patch-run_tests,v 1.1 2020/09/10 13:47:47 mariani Exp $
Index: run_tests
--- run_tests.orig
+++ run_tests
@@ -4,7 +4,7 @@ for t in tests/test*; do
echo $t
file_type=$(file -b $t)
case ${file_type} in
- *[Pp]ython*) python ${t} ;;
+ *[Pp]ython*) ${MODPY_BIN} ${t} ;;
*Bourne*) bash ${t} ;;
*bash*) bash ${t} ;;
*perl*) perl ${t} ;;