> While attempting to install an unrelated package, the installation
>failed. Going over some of the errors I've found that the install script
>failed at creating a directory, namely '/usr/local/include', saying that
>the directory already exists.
> When i looked at /usr/local i found not a directory, but a file,
>named - you guessed it - 'include'. When I looked at the contents of that
>file it seemed like it came from some cd writing (or scsi) related thing
>(I'm not versed at all in C).
> My question is: can i safely delete that file and make an 'include'
>dir instead?
Sort of. It's a common mistake with installation of new software. In
this case the command "cp cdda_interface.h /usr/local/include" has
been run with no directory called "/usr/local/include existing.
To fix the problem run these commands as root:
mv /usr/local/include /usr/local/cdda_interface.h
mkdir /usr/local/include
chmod 755 /usr/local/include
mv /usr/local/cdda_interface.h /usr/local/include/cdda_interface.h
chmod 644 /usr/local/include/cdda_interface.h
Cheers,
Mark.
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]