1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
|
From: Boyuan Yang <byang@debian.org>
Date: Wed, 6 Dec 2023 13:54:37 -0500
Subject: Fix waf shebang
---
auxdata/wscript | 2 +-
help/wscript | 2 +-
waf | 2 +-
wscript | 2 +-
4 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/auxdata/wscript b/auxdata/wscript
index ce713c7..0df7df6 100644
--- a/auxdata/wscript
+++ b/auxdata/wscript
@@ -1,4 +1,4 @@
-#! /usr/bin/env python
+#! /usr/bin/python3
import os
from waflib import Options, Utils, Logs
diff --git a/help/wscript b/help/wscript
index 41d84ec..0dd616e 100644
--- a/help/wscript
+++ b/help/wscript
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/python3
# Mallard waf adaptor written by Ulrik Sverdrup
# may be distributed, changed, used, etc freely for any purpose
diff --git a/waf b/waf
index 01b3a37..0d2c7e0 100755
--- a/waf
+++ b/waf
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/python3
# encoding: latin-1
# Thomas Nagy, 2005-2018
#
diff --git a/wscript b/wscript
index 598f429..c6fb66e 100644
--- a/wscript
+++ b/wscript
@@ -1,4 +1,4 @@
-#! /usr/bin/env python
+#! /usr/bin/python3
# encoding: utf-8
# pylint: disable=invalid-name
|