---
+* [Bug 2804] install-local-data assumes GNU 'find' semantics.
* [Bug 2808] GPSD_JSON driver enhancements, step 1.
Various improvements, see http://bugs.ntp.org/2808 for details.
Changed libjsmn to a more recent version.
@find $(distdir) -type d -name SCCS -print | xargs rm -rf
install-data-local:
- ( cd $(srcdir) && find html -name SCCS -prune -o -type d \
- -exec $(INSTALL) -d $(DESTDIR)$(htmldir)/{} ";" )
- ( cd $(srcdir) && find html -name SCCS -prune -o -type f \
- -exec $(INSTALL_DATA) {} $(DESTDIR)$(htmldir)/{} ";" )
+ ( cd $(srcdir) && \
+ for i in `find html -type d | grep -v SCCS` ; \
+ do $(INSTALL) -d $(DESTDIR)$(htmldir)/$$i ; done )
+ ( cd $(srcdir) && \
+ for i in `find html -name SCCS -prune -o -type f` ; \
+ do $(INSTALL_DATA) $$i $(DESTDIR)$(htmldir)/$$i ; done )
uninstall-local:
rm -rf $(DESTDIR)$(htmldir)/html