On 7/23/05, Dan Nicholson <[EMAIL PROTECTED]> wrote:
> This works fine for most packages, but when variables get set, the
> command truncates after the variable.
So set the variables separately:
DEFAULT_POSIX2_VERSION="199902"
cmd1="./configure --prefix=/tools"
...
$cmd1

Or put it in a function:
cmd1{
   DEFAULT_POSIX2_VERSION="199902" ./configure --prefix=/tools
}
...
cmd1


-- 
Lennon Victor Cook
--
http://linuxfromscratch.org/mailman/listinfo/lfs-support
FAQ: http://www.linuxfromscratch.org/lfs/faq.html
Unsubscribe: See the above information page

Reply via email to