From 1f44a8b11dbb6df5a07cda7fb1472eb3dea3294f Mon Sep 17 00:00:00 2001 From: Integral Date: Mon, 20 Apr 2026 05:13:02 +0800 Subject: [PATCH] Change permission modes of static libraries to 644 (#2885) Static libraries are archives and do not need the executable bit. --- Makefile.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile.in b/Makefile.in index 435fc34d..fbc3d80a 100644 --- a/Makefile.in +++ b/Makefile.in @@ -632,8 +632,8 @@ endif install_lib_static: $(STATIC_LIBS) $(INSTALL) -d $(LIBDIR) @for l in $(STATIC_LIBS); do \ - echo "$(INSTALL) -m 755 $$l $(LIBDIR)"; \ - $(INSTALL) -m 755 $$l $(LIBDIR); \ + echo "$(INSTALL) -m 644 $$l $(LIBDIR)"; \ + $(INSTALL) -m 644 $$l $(LIBDIR); \ done install_lib_pc: $(PC)