From fcbae97a1fe0e923f1d3ccbf60e4ef2a3eac854a Mon Sep 17 00:00:00 2001 From: Andreas Dolp Date: Wed, 29 Oct 2025 21:43:04 +0100 Subject: [PATCH] python/Makefile.am: fix file permissions of python/suricata/config/defaults.py The install command, by default, sets 0755 if -m is not specified, so the file python/suricata/config/defaults.py will be marked as an executable, though it isn't. --- python/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/Makefile.am b/python/Makefile.am index 32bf43f825..581e48b3d3 100644 --- a/python/Makefile.am +++ b/python/Makefile.am @@ -8,7 +8,7 @@ if HAVE_PYTHON install-exec-local: install -d -m 0755 "$(DESTDIR)$(prefix)/lib/suricata/python/suricata/config" - install suricata/config/defaults.py \ + install -m 0644 suricata/config/defaults.py \ "$(DESTDIR)$(prefix)/lib/suricata/python/suricata/config/defaults.py" uninstall-local: