From 9e57b5c3f48c15aa8fb0ced408ec745eb6ad8874 Mon Sep 17 00:00:00 2001 From: Nathan Scott Date: Sun, 23 Aug 2020 11:24:52 +1000 Subject: [PATCH] Generate an appropriate shebang line for MakeHeader script Use configure.ac to handle platform differences where some build hosts have only a python3, or only python, binary. Related to https://github.com/htop-dev/htop/pull/6 --- .gitignore | 1 + configure.ac | 5 ++++- scripts/{MakeHeader.py => MakeHeader.py.in} | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) rename scripts/{MakeHeader.py => MakeHeader.py.in} (99%) diff --git a/.gitignore b/.gitignore index f94f3f52..b642d7cb 100644 --- a/.gitignore +++ b/.gitignore @@ -39,4 +39,5 @@ libtool ltmain.sh m4/ missing +scripts/MakeHeader.py stamp-h1 diff --git a/configure.ac b/configure.ac index 323a94e9..a2eb53ec 100644 --- a/configure.ac +++ b/configure.ac @@ -299,6 +299,9 @@ AC_ARG_ENABLE([werror], [AS_HELP_STRING([--enable-werror], [Treat warnings as er AS_IF([test "x$enable_werror" = "xyes"], [AM_CFLAGS="$AM_CFLAGS -Werror"]) AC_SUBST([AM_CFLAGS]) +AC_CHECK_PROGS(PYTHON, [python python3 python2]) +AC_SUBST(PYTHON) + # Bail out on errors. # ---------------------------------------------------------------------- if test ! -z "$missing_libraries"; then @@ -320,7 +323,7 @@ AM_CONDITIONAL([HTOP_DARWIN], [test "$my_htop_platform" = darwin]) AM_CONDITIONAL([HTOP_SOLARIS], [test "$my_htop_platform" = solaris]) AM_CONDITIONAL([HTOP_UNSUPPORTED], [test "$my_htop_platform" = unsupported]) AC_SUBST(my_htop_platform) -AC_CONFIG_FILES([Makefile htop.1]) +AC_CONFIG_FILES([Makefile htop.1 scripts/MakeHeader.py], [chmod +x scripts/MakeHeader.py]) AC_OUTPUT if test "$my_htop_platform" = "unsupported" diff --git a/scripts/MakeHeader.py b/scripts/MakeHeader.py.in similarity index 99% rename from scripts/MakeHeader.py rename to scripts/MakeHeader.py.in index 3ef34b88..9da6685a 100755 --- a/scripts/MakeHeader.py +++ b/scripts/MakeHeader.py.in @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env @PYTHON@ import os, sys, string, io try: from StringIO import StringIO