Hi!

On Nov 15, 2015 9:29 PM, "Reinier Millo Sánchez" <rmi...@uclv.cu> wrote:
>> find . -name "*.C" -exec rename 's/\.C$/.cpp/' '{}' \;
>
> I have tried something like this on the port file:
>>
>> CMD := `find . -name "*.C" -exec rename 's/\.C$/.cpp/' '{}' \;`
>>
>> default:
>>     ${CMD}

I'm not sure if this is the (only) issue, but the back-quotes look fishy to
me. Does this fix your issue?

CMD := find . -name "*.C" -exec rename 's/\.C$/.cpp/' '{}' \;

Jamey
------------------------------------------------------------------------------
Presto, an open source distributed SQL query engine for big data, initially
developed by Facebook, enables you to easily query your data on Hadoop in a 
more interactive manner. Teradata is also now providing full enterprise
support for Presto. Download a free open source copy now.
http://pubads.g.doubleclick.net/gampad/clk?id=250295911&iu=/4140
_______________________________________________
genode-main mailing list
genode-main@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/genode-main

Reply via email to