From 433247a792ad04a5f636021470648241684d1bd2 Mon Sep 17 00:00:00 2001 From: Joseph Sutton Date: Thu, 2 Mar 2023 16:42:47 +1300 Subject: [PATCH] s3:modules: Fix invalid escape sequences Signed-off-by: Joseph Sutton Reviewed-by: Andrew Bartlett --- source3/modules/wscript_build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source3/modules/wscript_build b/source3/modules/wscript_build index 80c112bc421..4ab616e7ed7 100644 --- a/source3/modules/wscript_build +++ b/source3/modules/wscript_build @@ -266,7 +266,7 @@ bld.SAMBA_GENERATOR('nfs41acl-h', if bld.CONFIG_SET("HAVE_RPC_XDR_H"): - xdr_buf_hack = 'sed -e "s@^\([ \t]*register int32_t \*buf\);@\\1 = buf;@"' + xdr_buf_hack = r'sed -e "s@^\([ \t]*register int32_t \*buf\);@\\1 = buf;@"' # By default rpcgen assumes that the input file, generated header and # source file are located in the same directory, which is extracted from