View Single Post
  #7  
Old 07-11-2014, 02:34 PM
lerxst2112
Demi-God
 
Join Date: Aug 2010
Posts: 1,742
Default

Those are warnings, not errors.

You can see the difference between the regular and back quotes by typing
Code:
echo 'locate -n 1 libperl.so'
echo `locate -n 1 libperl.so`
and seeing the difference in the output. The first is just a quoted string, the second is the output from the actual command.

I don't know which is correct to pass to cmake. It seems like their method of detecting perl should work if you didn't try to override it at all.
Reply With Quote