Terrence Miller <terrencem <at> sbcglobal.net> writes: > > I just completed my first build (8 hours on a Toshiba laptop) ( > configure args and packages added > documented in attached script). I followed the directions from the wiki > page and added: > > export LOCALINSTALLDIR="/home/tcm/dest/second_try" > mkdir -p $LOCALINSTALLDIR > export PKGFORMAT="installed" > > between the calls to bootstrap and configure in order to generate a > ready-to-run installation > but ended up with a directory full of Debian packages. > > Any suggestions?
Oh yeah, the docs should be more clear on that one: PKGFORMAT gets set to a default value (deb) when you source the LinuxEnv*.sh file. So you have to set the var either after sourceing that file or change the setting right in the file. You can do this: cd $SRCROOT source LinuxEnv*.sh export LOCALINSTALLDIR="/home/tcm/dest/second_try" mkdir -p $LOCALINSTALLDIR export PKGFORMAT="installed" cd $SRCROOT/instsetoo_native && build If you have not deleted your solver, an installation will be prepared without the need to recompile anything. Have Fun, Bjoern --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
