configure: data files shouldn't be executable (#1542)

for example it creates `/etc/turnserver.conf.default` as executable,
which is strange...
This commit is contained in:
Sergey Radionov 2024-08-06 12:04:27 +07:00 committed by GitHub
parent eee52ad1b9
commit 7711c43525
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

2
configure vendored
View File

@ -466,7 +466,7 @@ else
INSTALL_SCRIPT="install -p"
INSTALL_SHARED_LIB="install -p"
INSTALL_STATIC_LIB="install -p"
INSTALL_DATA="install -p"
INSTALL_DATA="install -p -m 0644"
MKDIR="install -d"
else
INSTALL_PROGRAM="cp -pf"