Commit 7109360d authored by Tollef Fog Heen's avatar Tollef Fog Heen

Use printf rather than echo when writing default.vcl

echo -e isn't in POSIX so it's not supported by all shells.  Use
printf instead of echo to work around this.
parent 6c957b4d
......@@ -6,7 +6,7 @@ DISTCLEANFILES = default.vcl
dist_varnishconf_DATA = default.vcl
default.vcl: $(top_srcdir)/bin/varnishd/default.vcl
@echo -e "This is a basic VCL configuration file for varnish. See the vcl(7)\n\
@printf "This is a basic VCL configuration file for varnish. See the vcl(7)\n\
man page for details on VCL syntax and semantics.\n\
\n\
Default backend definition. Set this to point to your content\n\
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment