# HG changeset patch # User John Donoghue # Date 1636642147 18000 # Node ID 9a893025d734542b1d7c1d77b7d001b5ea7be69c # Parent ccea92e01188b8a5a71c1bd1e7e5ed0a9a69960c * src/gnuplot.mk: install term/js files (Bug #61429) diff -r ccea92e01188 -r 9a893025d734 src/gnuplot.mk --- a/src/gnuplot.mk Wed Nov 10 19:00:21 2021 +0100 +++ b/src/gnuplot.mk Thu Nov 11 09:49:07 2021 -0500 @@ -76,6 +76,12 @@ $(INSTALL) -d '$(3)$(HOST_PREFIX)/share/texmf/tex/generic/gnuplot/' $(INSTALL) -m644 "$(1)/share/LaTeX/gnuplot-lua-tikz-common.tex" '$(3)$(HOST_PREFIX)/share/texmf/tex/generic/gnuplot/'; + # js files + $(INSTALL) -d '$(3)$(HOST_PREFIX)/share/js' + for f in $(1)/term/js/*.*; do \ + $(INSTALL) -m644 "$$f" '$(3)$(HOST_PREFIX)/share/js/'; \ + done + ## MG: not sure what to do with these and how to integrate with DESTDIR $(INSTALL) -d '$(TOP_DIR)/gnuplot/bin' $(INSTALL) -m755 '$(1)/config/mingw/gnuplot.exe' '$(TOP_DIR)/gnuplot/bin/'