On Aug 24, 2008, at 3:37 PM, Charles Darwin wrote:
darwinbuild makes an honest attempt but then it fails.
:Build9E17 root# darwinbuild -build=ppc_only '*' *** Fetching Sources ... usage: darwinxref [-f db] [-b build] patchfiles <project> usage: darwinxref [-f db] [-b build] source_sites [<project>] basename: Apple16X50Serial -19.2 ... SNIP ... \nvim -34 \nwebdavfs -252.6 \nwxWidgets -11\nxar-28\nxelf-1\nxnu-1228.5.20\nzip-9\nzlib-18\nzsh-48.log~1: File name too long chroot: Apple3Com3C90x-10: No such file or directory
How do I tell darwinbuild to build darwin without specifying each and every project's name?
I usually just use a shell for loop, for example with bash: for X in $(darwinxref version '*' | cut -f 1 -d '-'); do darwinbuild $X; done -Bill