In the "Debugging" node, where it suggests running the script with

SHELL ./configure -vx 2>&1 | tee LOG-FILE

should that be

SHELL -vx ./configure 2>&1 | tee LOG-FILE

?

If I try, for example

bash ./configure -vx 2>&1 | tee LOG-FILE

I get an error from ./configure (unknown options), whereas

bash -vx ./configure 2>&1 | tee LOG-FILE

seems to work fine.

(Checked against git head.)

-- 
http://rrt.sc3d.org

Reply via email to