diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2015-03-07 15:24:51 -0500 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2015-03-07 15:24:51 -0500 |
commit | ece6c047eacb388ed4d36ce1eb18cc96b47a047e (patch) | |
tree | 8ae56ac30ef14dd18023a327f3e65e55f7f08ef5 /Makefile.in | |
parent | 56dc0c7616693b6a50995435df8d6561f358205d (diff) | |
download | calfuse-ece6c047eacb388ed4d36ce1eb18cc96b47a047e.tar.gz |
Keeping things portable.
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/Makefile.in b/Makefile.in index a2f0acb..5f1807f 100644 --- a/Makefile.in +++ b/Makefile.in @@ -162,7 +162,7 @@ CSCOPE = cscope DIST_SUBDIRS = $(SUBDIRS) am__DIST_COMMON = $(srcdir)/Makefile.in \ $(top_srcdir)/src/include/config.h.in compile config.guess \ - config.sub install-sh ltmain.sh missing + config.sub depcomp install-sh ltmain.sh missing DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) distdir = $(PACKAGE)-$(VERSION) top_distdir = $(distdir) @@ -841,8 +841,13 @@ uninstall-am: install-data-local: $(DATADIRS) - mkdir -p $(DESTDIR)$(pkgdatadir) - cp -a $(DATADIRS) $(DESTDIR)$(pkgdatadir) + install -d -m 0755 $(DESTDIR)$(pkgdatadir) + for d in "$(DATADIRS)"; do \ + install -d -m 0755 $(DESTDIR)$(pkgdatadir)$d ; \ + for f in $d; do \ + install -m 0644 $$f $(DESTDIR)$(pkgdatadir)$f ; \ + done ; \ + done # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. |