From 4b424c757188f7a47630a4d8edcf4ad9f19255bc Mon Sep 17 00:00:00 2001 From: Paolo Bonzini Date: Thu, 18 May 2023 11:27:39 +0200 Subject: scripts: make sure scripts are invoked via $(PYTHON) Some scripts are invoked via the first "python3" binary in the PATH, because they are executable and their shebang line is "#! /usr/bin/env python3". To enforce usage of $(PYTHON), make them nonexecutable. Scripts invoked via meson need nothing else, and meson-buildoptions.py is already using $(PYTHON). For probe-gdb-support.py however the invocation in the configure script has to be adjusted. Reviewed-by: Richard Henderson Signed-off-by: Paolo Bonzini --- scripts/meson-buildoptions.py | 0 scripts/modinfo-collect.py | 0 scripts/modinfo-generate.py | 0 scripts/probe-gdb-support.py | 0 4 files changed, 0 insertions(+), 0 deletions(-) mode change 100755 => 100644 scripts/meson-buildoptions.py mode change 100755 => 100644 scripts/modinfo-collect.py mode change 100755 => 100644 scripts/modinfo-generate.py mode change 100755 => 100644 scripts/probe-gdb-support.py (limited to 'scripts') diff --git a/scripts/meson-buildoptions.py b/scripts/meson-buildoptions.py old mode 100755 new mode 100644 diff --git a/scripts/modinfo-collect.py b/scripts/modinfo-collect.py old mode 100755 new mode 100644 diff --git a/scripts/modinfo-generate.py b/scripts/modinfo-generate.py old mode 100755 new mode 100644 diff --git a/scripts/probe-gdb-support.py b/scripts/probe-gdb-support.py old mode 100755 new mode 100644 -- cgit v1.2.3