Hi,
On my buildserver, I'd like to do something along the lines of
# build 1
./configure --prefix=${HOME}/opt/1 && make && make install
# build 2 (incrementally)
./configure --prefix=${HOME}/opt/2 && make && make install
The second make install fails for some libraries, with the message
libtool:
Hi Bob,
Thanks for your reply
On Tue, Dec 29, 2015 at 8:46 PM, Bob Friesenhahn
wrote:
> Try adding 'make clean' to your build steps.
>
> The best thing to do is to build outside of the source tree and use a
> separate build directory for each configure incantation.
Either would obviously work,
On Tue, Dec 29, 2015 at 9:14 PM, Gavin Smith wrote:
>
> You want not to rebuild files that don't need to be rebuilt.
Although I tend to agree, we may differ on opinion on the importance
of this. I'd argue that it is much more important to not forget
rebuilding files that actually needed to be reb