From 157af18d60a5847d307078f8ceb0abcff10683a6 Mon Sep 17 00:00:00 2001 From: Shivani Bhardwaj Date: Wed, 28 Jun 2023 11:48:27 +0530 Subject: [PATCH] python: remove futile exec perm from files --- python/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/Makefile.am b/python/Makefile.am index bfa78381830d..b3547192bd14 100644 --- a/python/Makefile.am +++ b/python/Makefile.am @@ -26,7 +26,7 @@ install-exec-local: install -d -m 0755 "$(DESTDIR)$(prefix)/lib/suricata/python/suricatasc" install -d -m 0755 "$(DESTDIR)$(prefix)/bin" for src in $(LIBS); do \ - install $(srcdir)/$$src "$(DESTDIR)$(prefix)/lib/suricata/python/$$src"; \ + install -m 0644 $(srcdir)/$$src "$(DESTDIR)$(prefix)/lib/suricata/python/$$src"; \ done install suricata/config/defaults.py \ "$(DESTDIR)$(prefix)/lib/suricata/python/suricata/config/defaults.py"