I had the same problem. In the terminal where you were doing the make install type:
install --help
you will find that the install that you are using does not support the -C option
here is what the -C option does:
-C
Install file, unless target already exists and is the same file,
in which case the modification time is not changed.
Install file, unless target already exists and is the same file,
in which case the modification time is not changed.
Please note that this may not be the proper way as I am new to linux too but I just decided to remove the -C option from the make files everywhere it is used as an option for install. Make sure not to remove it blindly. Do it just for the install command. -C is used for other commands in the make files and it probably should not be removed there.
As a side note, I did not run into this problem with the new 1.10 files.
_______________________________________________ Davinci-linux-open-source mailing list [email protected] http://linux.davincidsp.com/mailman/listinfo/davinci-linux-open-source
