ref: a24bac34bd292f88c41c0d3428033fb4ed72e4c4
parent: 3901045318bb1d1e1145dc1ba54bb896187697d4
author: Martin Storsjö <martin@martin.st>
date: Fri Jan 2 16:52:36 EST 2015
Don't install the pkg-config file as readonly This file should be installed just as any other file, protected by normal user permissions, not by making the file readonly.
--- a/Makefile
+++ b/Makefile
@@ -237,7 +237,7 @@
cp -a $(LIBPREFIX)$(PROJECT_NAME).$(SHAREDLIBSUFFIX) $(SHAREDLIB_DIR); \
fi
mkdir -p $(PREFIX)/lib/pkgconfig
- install -m 444 $(PROJECT_NAME).pc $(PREFIX)/lib/pkgconfig
+ install -m 644 $(PROJECT_NAME).pc $(PREFIX)/lib/pkgconfig
ifneq ($(EXTRA_LIBRARY),)
install -m 644 $(EXTRA_LIBRARY) $(PREFIX)/lib
endif