mirror of
https://gitlab.freedesktop.org/libbsd/libbsd.git
synced 2025-01-09 19:27:42 +01:00
build: Install shared library with 755 permission
The Makefile should install the shared library with 755 permission rather than 644. That's standard practice, and required when building RPMs on Fedora to get a debuginfo package.
This commit is contained in:
parent
11f2c32df2
commit
cd730a02c3
2
Makefile
2
Makefile
@ -177,7 +177,7 @@ install: libs man
|
||||
mkdir -p $(DESTDIR)$(mandir)/man3
|
||||
mkdir -p $(DESTDIR)$(pkgconfigdir)
|
||||
install -m644 $(LIB_STATIC) $(DESTDIR)$(usrlibdir)
|
||||
install -m644 $(LIB_SHARED) $(DESTDIR)$(libdir)
|
||||
install -m755 $(LIB_SHARED) $(DESTDIR)$(libdir)
|
||||
for i in $(LIB_INCLUDES); do \
|
||||
install -m644 include/$$i $(DESTDIR)$(includedir)/$$i; \
|
||||
done
|
||||
|
Loading…
Reference in New Issue
Block a user