John Burrell wrote: > > Would you kindly remove the continuation line character from these two lines > in mysql: > > mkdir build && \ > cd build && \ > > I know it's a trivial request, but they don't half screw up my script!
We can do that, but I don't know why they create a problem with your script. It's the same as doing mkdir build && cd build && cmake -DCMAKE_INSTALL_PREFIX=/usr \ ... For a script, you may want to use 'mkdir -p build' or add 'rm -rf build' right before the mkdir. -- Bruce -- http://linuxfromscratch.org/mailman/listinfo/blfs-support FAQ: http://www.linuxfromscratch.org/blfs/faq.html Unsubscribe: See the above information page
