886e4c966e
With the merge of spl and zfs the extra level of directories is not needed anymore. Signed-off-by: Stoiko Ivanov <s.ivanov@proxmox.com>
29 lines
1.1 KiB
Diff
29 lines
1.1 KiB
Diff
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
From: Stoiko Ivanov <s.ivanov@proxmox.com>
|
|
Date: Thu, 23 May 2019 15:22:27 +0200
|
|
Subject: [PATCH] test-runner.py: change shebang to python3
|
|
|
|
In commit 6e72a5b9b61066146deafda39ab8158c559f5f15 python scripts which
|
|
work with python2 and python3 changed the shebang from /usr/bin/python
|
|
to /usr/bin/python3. This gets adapted by the build-system on systems
|
|
which don't provide python3.
|
|
This commit changes test-runner.py to also use /usr/bin/python3,
|
|
enabling the change during buildtime and fixing a minor lintian issue
|
|
on Debian systems, which only have python3 installed.
|
|
|
|
Signed-off-by: Stoiko Ivanov <s.ivanov@proxmox.com>
|
|
---
|
|
tests/test-runner/bin/test-runner.py | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/tests/test-runner/bin/test-runner.py b/tests/test-runner/bin/test-runner.py
|
|
index ea37e8ab6..4d4fd96ad 100755
|
|
--- a/tests/test-runner/bin/test-runner.py
|
|
+++ b/tests/test-runner/bin/test-runner.py
|
|
@@ -1,4 +1,4 @@
|
|
-#!/usr/bin/python
|
|
+#!/usr/bin/python3
|
|
|
|
#
|
|
# This file and its contents are supplied under the terms of the
|