|
From: Ethan M. <merritt@u.washington.edu> - 2011-02-27 01:56:02
|
On Saturday, February 26, 2011, Allin Cottrell wrote: > I just did the following in my gnuplot source tree: > > cvs update -d -P > sh prepare > configure --prefix=/opt/gnuplot > make <no errors reported> > make install > > And got this on the install: > > Making install in share > make[1]: Entering directory `/usr/src/gnuplot-cvs/share' > Making install in LaTeX > make[2]: Entering directory `/usr/src/gnuplot-cvs/share/LaTeX' > test -z "" || lua ../../term/lua/gnuplot-tikz.lua style > test -z "" || lua ../../term/lua/gnuplot-tikz.lua style > test -z "" || lua ../../term/lua/gnuplot-tikz.lua style > test -z "" || lua ../../term/lua/gnuplot-tikz.lua style > make[3]: Entering directory `/usr/src/gnuplot-cvs/share/LaTeX' > make[3]: Nothing to be done for `install-exec-am'. > test -z "" || lua ../../term/lua/gnuplot-tikz.lua style > test -z "" || lua ../../term/lua/gnuplot-tikz.lua style > test -z "" || lua ../../term/lua/gnuplot-tikz.lua style > test -z "" || lua ../../term/lua/gnuplot-tikz.lua style so far so good, it knows not to try to run lua if it doesn't exist. > test -z "/opt/gnuplot/share/texmf/tex/latex/gnuplot" || /bin/mkdir > -p "/opt/gnuplot/share/texmf/tex/latex/gnuplot" > /usr/bin/install -c -m 644 gnuplot.cfg ./gnuplot-lua-tikz.sty > ./gnuplot-lua-tikz-common.tex ./gnuplot-lua-tikz.tex > ./t-gnuplot-lua-tikz.tex > '/opt/gnuplot/share/texmf/tex/latex/gnuplot' > /usr/bin/install: cannot stat `./gnuplot-lua-tikz.sty': No such > file or directory But then having not built them, it tries to install them anyhow. OK. I know how to fix that. > My last "make install," with CVS as of 2011-01-17, went OK. Right. But we just replaced the lua terminal with a new version, and the build process is now somewhat more complicated. [time passes] OK. Fixed now. |