mirror of
https://github.com/OISF/suricata.git
synced 2026-02-03 20:41:46 -05:00
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.
This commit is contained in:
parent
5f138891b2
commit
fcbae97a1f
1 changed files with 1 additions and 1 deletions
|
|
@ -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…
Reference in a new issue