diff options
author | P. 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) |
commit | a66a577977d5747ef4fcb73b1d139b77a79db80e (patch) | |
tree | 2ff51ad72cb110f77744e88950639e4a385c7084 | |
parent | b0362c0b23057f3fcfd9c41d5e6c7082758a3c1e (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.
-rwxr-xr-x | configure | 1 | ||||
-rw-r--r-- | lib/Makefile.in | 4 | ||||
-rw-r--r-- | locale/Makefile.in | 4 | ||||
-rw-r--r-- | man/Makefile.in | 4 | ||||
-rw-r--r-- | src/Makefile.in | 4 |
5 files changed, 12 insertions, 5 deletions
@@ -35,7 +35,6 @@ localedir='$(datadir)/locale' quiet=false missing_deps=false dep_cmds=' -install sh ' 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: diff --git a/locale/Makefile.in b/locale/Makefile.in index bf16dae..1e08b0d 100644 --- a/locale/Makefile.in +++ b/locale/Makefile.in @@ -51,7 +51,9 @@ clean: install: all @for obj in $(OBJS); do \ printf ' INSTALL locale/%s\n' "$${obj}"; \ - $(INSTALL) -D "$${obj}" "$(DESTDIR)/$(localedir)/$${obj}"; \ + mkdir -p '$(DESTDIR)/$(localedir)'; \ + cp "$${obj}" "$(DESTDIR)/$(localedir)/$${obj}"; \ + chmod 644 "$(DESTDIR)/$(localedir)/$${obj}"; \ done uninstall: diff --git a/man/Makefile.in b/man/Makefile.in index 25a3882..387a599 100644 --- a/man/Makefile.in +++ b/man/Makefile.in @@ -73,7 +73,9 @@ clean: install: all @for obj in $(OBJS); do \ printf ' INSTALL man/%s\n' "$${obj}"; \ - $(INSTALL) -D "$${obj}" "$(DESTDIR)/$(mandir)/man$${obj##*.}/$${obj}"; \ + mkdir -p '$(DESTDIR)/$(mandir)/man$${obj##*.}'; \ + cp "$${obj}" "$(DESTDIR)/$(mandir)/man$${obj##*.}/$${obj}"; \ + chmod 644 "$(DESTDIR)/$(mandir)/man$${obj##*.}/$${obj}"; \ done uninstall: diff --git a/src/Makefile.in b/src/Makefile.in index 22c115c..7740e13 100644 --- a/src/Makefile.in +++ b/src/Makefile.in @@ -63,7 +63,9 @@ clean: install: all @for obj in $(OBJS); do \ printf ' INSTALL src/%s\n' "$${obj}"; \ - $(INSTALL) -D "$${obj}" "$(DESTDIR)/$(bindir)/$${obj}"; \ + mkdir -p '$(DESTDIR)/$(bindir)'; \ + cp "$${obj}" "$(DESTDIR)/$(bindir)/$${obj}"; \ + chmod 755 "$(DESTDIR)/$(bindir)/$${obj}"; \ done uninstall: |