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.
pull/14262/head
Andreas Dolp 3 weeks ago committed by Victor Julien
parent 5f138891b2
commit fcbae97a1f

@ -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:

Loading…
Cancel
Save