summaryrefslogtreecommitdiffstats
path: root/lib/Makefile.in
diff options
context:
space:
mode:
authorP. J. McDermott <pjm@nac.net>2012-08-02 22:41:39 (EDT)
committer P. J. McDermott <pjm@nac.net>2012-08-02 22:41:39 (EDT)
commita66a577977d5747ef4fcb73b1d139b77a79db80e (patch)
tree2ff51ad72cb110f77744e88950639e4a385c7084 /lib/Makefile.in
parentb0362c0b23057f3fcfd9c41d5e6c7082758a3c1e (diff)
Portably install, set better file modes.
The install utility is not required by POSIX, and it's easily replaced by mkdir, cp, and chmod. Libraries, locales, and manual pages should not be executable.
Diffstat (limited to 'lib/Makefile.in')
-rw-r--r--lib/Makefile.in4
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/Makefile.in b/lib/Makefile.in
index 1f40840..d790456 100644
--- a/lib/Makefile.in
+++ b/lib/Makefile.in
@@ -62,7 +62,9 @@ clean:
install: all
@for obj in $(OBJS); do \
printf ' INSTALL lib/%s\n' "$${obj}"; \
- $(INSTALL) -D "$${obj}" "$(DESTDIR)/$(libdir)/$${obj}"; \
+ mkdir -p '$(DESTDIR)/$(libdir)'; \
+ cp "$${obj}" "$(DESTDIR)/$(libdir)/$${obj}"; \
+ chmod 644 "$(DESTDIR)/$(libdir)/$${obj}"; \
done
uninstall: