From 7711c43525a3e9f4ea83d75831115c97ab6476ce Mon Sep 17 00:00:00 2001 From: Sergey Radionov Date: Tue, 6 Aug 2024 12:04:27 +0700 Subject: [PATCH] configure: data files shouldn't be executable (#1542) for example it creates `/etc/turnserver.conf.default` as executable, which is strange... --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure b/configure index 3ff83e1..10dc8db 100755 --- a/configure +++ b/configure @@ -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"