From f606175c8feb56e1858ebdfd7873a261e0a2163a Mon Sep 17 00:00:00 2001 From: "Eric S. Raymond" Date: Mon, 20 Sep 2021 14:07:29 -0400 Subject: [PATCH] Ubuntu has abolished /usr/bin/python, change shebang to python3. --- NEWS | 3 +++ doc/makehelp.py | 2 +- po/msgfmt.py | 2 +- sst.py | 2 +- test/Makefile | 2 +- 5 files changed, 7 insertions(+), 4 deletions(-) diff --git a/NEWS b/NEWS index ac0d052..cdb26a9 100644 --- a/NEWS +++ b/NEWS @@ -1,5 +1,8 @@ SST2K project news. +Repoitory head:: + Ubuntu has abolished /usr/bin/python, change shebang to python3. + 2.6: 2021-04-16:: Fixed a longstanding bug in the chart display. Minor port fixes for recent Python 23 versions. diff --git a/doc/makehelp.py b/doc/makehelp.py index 835b873..bbd317b 100755 --- a/doc/makehelp.py +++ b/doc/makehelp.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # # Generate an on-line help file for SST 2K from the text generated from # the XML documentation. diff --git a/po/msgfmt.py b/po/msgfmt.py index 6433131..c777437 100755 --- a/po/msgfmt.py +++ b/po/msgfmt.py @@ -1,4 +1,4 @@ -#! /usr/bin/env python +#! /usr/bin/env python3 # -*- coding: iso-8859-1 -*- # Written by Martin v. Löwis diff --git a/sst.py b/sst.py index 5e6d88e..c90472c 100755 --- a/sst.py +++ b/sst.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 """ sst.py -- Super Star Trek 2K diff --git a/test/Makefile b/test/Makefile index a0d9126..7b21af0 100644 --- a/test/Makefile +++ b/test/Makefile @@ -1,6 +1,6 @@ # Test-suite makefile for sst -PYTHON=python +PYTHON=python3 # The tests output TAP (Test Anything Proocol) # If you have either of these TAP viwers installed, -- 2.31.1