From 403ebab85883c0ae1d7fad96f18b32e81d22efe0 Mon Sep 17 00:00:00 2001 From: Dirk Zimoch Date: Tue, 6 Aug 2024 14:38:13 +0200 Subject: [PATCH] use more standard permissions for bins and libs --- configure/CONFIG_COMMON | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/configure/CONFIG_COMMON b/configure/CONFIG_COMMON index 742e54ae4..2595231f4 100644 --- a/configure/CONFIG_COMMON +++ b/configure/CONFIG_COMMON @@ -422,9 +422,9 @@ INSTALL_LIB_INSTALLS = $(addprefix $(INSTALL_LIB)/,$(notdir $(LIB_INSTALLS))) #--------------------------------------------------------------- # Installed file permissions -BIN_PERMISSIONS = 555 -LIB_PERMISSIONS = 444 -SHRLIB_PERMISSIONS = 555 +BIN_PERMISSIONS = 755 +LIB_PERMISSIONS = 644 +SHRLIB_PERMISSIONS = 755 INSTALL_PERMISSIONS = 444 #---------------------------------------------------------------