16 Oct
2007
16 Oct
'07
7:25 p.m.
A few small build questions:
dcvs co dillo2 dcvs co dw2
OK
cp -r dillo2 dillo2-cur cp -r dw2 dw2-cur
Why do I need to have a complete copy of a directory I just checked out?
ln -s dw2-cur dw-testbed
Why do I need another name for that copy? Is it hardwired somewhere?
find dw2-cur -name CVS -exec rm \{\} \; find dillo2-cur -name CVS -exec rm \{\} \;
Why do I need to remove the CVS directories from the source tree? Do they stand in the way of something building properly? Isn't this equiavalent to doing 'cvs export' instead, anyway?
cd dw2-cur ./autogen.sh make
Do I also need to somehow 'install' this? Because how is the dillo2 src gonna find it otherwise?
cd ../dillo2-cur ./autogen.sh make
Thanks Jan