Re: [vpp-dev] VPP build breaks if one directory contains @

2022-04-27 Thread Renato Botelho do Couto via lists.fd.io
There it goes. It fixed the problem I was seeing here https://gerrit.fd.io/r/c/vpp/+/36057 On 27/04/22 16:24, Renato Botelho do Couto wrote: Sure! I'll work on it Thanks! On Wed, 27 Apr 2022 at 16:21 Klement Sekera > wrote: Hi Renato, I see that some

Re: [vpp-dev] VPP build breaks if one directory contains @

2022-04-27 Thread Renato Botelho do Couto via lists.fd.io
Sure! I'll work on it Thanks! On Wed, 27 Apr 2022 at 16:21 Klement Sekera wrote: > Hi Renato, > > I see that some special char conversion cases are already covered in > vapi_c_gen.py: > > 713 include_guard = "__included_%s" % ( > 714 j.replace(".", "_").replace("/", "_").replace("-"

Re: [vpp-dev] VPP build breaks if one directory contains @

2022-04-27 Thread Klement Sekera
Hi Renato, I see that some special char conversion cases are already covered in vapi_c_gen.py: 713 include_guard = "__included_%s" % ( 714 j.replace(".", "_").replace("/", "_").replace("-", "_").replace( 715 "+", "_")) 716 print("#ifndef %s" % include_guard) would yo