From: Shivani Bhardwaj Date: Wed, 28 Jun 2023 06:18:27 +0000 (+0530) Subject: python: remove futile exec perm from files X-Git-Tag: suricata-7.0.0~89 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=157af18d60a5847d307078f8ceb0abcff10683a6;p=thirdparty%2Fsuricata.git python: remove futile exec perm from files --- diff --git a/python/Makefile.am b/python/Makefile.am index bfa7838183..b3547192bd 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"