|
From: Hans-Bernhard B. <br...@ph...> - 2006-10-05 21:34:52
|
On Thu, 5 Oct 2006, Daniel J Sebald wrote:
> Does the following help to solve any problems:
>
> ./configure --libexecdir=\${exec_prefix}/lib$(uname -i)exec
No. It solves only half the problem, because it still writes the main
gnuplot executable to a directory shared by multiple architectures. The
correct solution, if you want to base it on uname -i output, would be more
like this:
[if you're root:]
./configure --exec-prefix=/usr/local/$(uname -i)
[otherwise:]
./configure --prefix=$HOME --exec-prefix=$HOME/$(uname -i)
--
Hans-Bernhard Broeker (br...@ph...)
Even if all the snow were burnt, ashes would remain.
|