diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2015-03-07 23:42:46 -0500 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2015-03-07 23:42:46 -0500 |
commit | 727498350ee97618f5a23f93addaef43e7d950af (patch) | |
tree | ea77abba309c71e438bbf3fd5aa600c86116e7f9 /Makefile.in | |
parent | ece6c047eacb388ed4d36ce1eb18cc96b47a047e (diff) | |
download | calfuse-727498350ee97618f5a23f93addaef43e7d950af.tar.gz |
Massive fixes. Adding the rest of the code.
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/Makefile.in b/Makefile.in index 5f1807f..6326389 100644 --- a/Makefile.in +++ b/Makefile.in @@ -841,13 +841,8 @@ uninstall-am: install-data-local: $(DATADIRS) - 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 + mkdir -p $(DESTDIR)$(pkgdatadir) ; \ + find $(DATADIRS) -type f | xargs -I{} install -D -m 644 {} $(DESTDIR)$(pkgdatadir)/{} # 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. |