# HG changeset patch # User Rob Landley # Date 1289479024 21600 # Node ID e5f98d48be156ee5f56cff7c2c4f1df4168a44fc # Parent 095c9652525e1a02bd43550878e3be9a8f22ddb2 Ever-fluffier FAQ. diff -r 095c9652525e -r e5f98d48be15 www/FAQ.html --- a/www/FAQ.html Thu Nov 11 06:36:33 2010 -0600 +++ b/www/FAQ.html Thu Nov 11 06:37:04 2010 -0600 @@ -280,6 +280,22 @@ to a run without host-tools can be instructive; that's the extra stuff ./configure is picking up out of the host environment.)

+

If you'd like to use the command recording wrapper in another context +(such as on the target system), do this:

+ +

+[copy sources/toys/wrappy.c to the target]
+mkdir /home/wrappy
+gcc wrappy.c -o /home/wrappy/wrappy
+for i in $(cd /bin; ls); do ln -s wrappy /home/wrappy/$i; done
+for i in $(cd /sbin; ls); do ln -s wrappy /home/wrappy/$i; done
+export WRAPPY_LOGPATH=/home/wrap.log
+export OLDPATH="$PATH"
+
+PATH=/home/wrappy ./runmybuild.sh
+
+
+

Q: How do I run my own build snippets without editing the build scripts?

A: Use the more/test.sh script