From: Volker Lendecke Date: Sun, 29 Nov 2020 17:04:12 +0000 (+0100) Subject: build: Wrap a long line X-Git-Tag: samba-4.14.0rc1~447 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=60b96580d2415ea8048ea6b216cf764727d23879;p=thirdparty%2Fsamba.git build: Wrap a long line There will be one more .c file Signed-off-by: Volker Lendecke Reviewed-by: Jeremy Allison --- diff --git a/lib/addns/wscript_build b/lib/addns/wscript_build index c38e93ccc95..7f026d40e44 100644 --- a/lib/addns/wscript_build +++ b/lib/addns/wscript_build @@ -1,7 +1,15 @@ #!/usr/bin/env python bld.SAMBA_LIBRARY('addns', - source='dnsquery.c dnsrecord.c dnsutils.c dnssock.c dnsgss.c dnsmarshall.c error.c', + source=''' + dnsquery.c + dnsrecord.c + dnsutils.c + dnssock.c + dnsgss.c + dnsmarshall.c + error.c + ''', public_deps='samba-util gssapi ndr resolv dns_lookup', private_library=True, vars=locals())