Commit 26c3d5bd authored by Poul-Henning Kamp's avatar Poul-Henning Kamp

Whitespace cleanup

parent cf962407
......@@ -49,7 +49,7 @@ shell {
}
shell -expect {VCL compiled.} {
varnishadm -n ${tmpdir}/v0 vcl.load vcl1 ${tmpdir}/vcl
varnishadm -n ${tmpdir}/v0 vcl.load vcl1 ${tmpdir}/vcl
}
shell -expect {active auto/warm - vcl1} {
......
......@@ -115,7 +115,7 @@ $(GENERATED_H): $(top_srcdir)/lib/libvcc/generate.py $(top_srcdir)/include/vrt.h
mkdir -p tbl
@PYTHON@ $(top_srcdir)/lib/libvcc/generate.py $(top_srcdir) $(top_builddir)
BUILT_SOURCES = vcs_version.h vmod_abi.h
BUILT_SOURCES = $(GENERATED_H)
MAINTAINERCLEANFILES = vcs_version.h
CLEANFILES = \
......
......@@ -1381,18 +1381,18 @@ fp_vclvar.close()
if os.path.isdir(os.path.join(srcroot, ".git")):
v = subprocess.check_output([
"git --git-dir=" + os.path.join(srcroot, ".git") +
"git --git-dir=" + os.path.join(srcroot, ".git") +
" show -s --pretty=format:%h"
], shell=True, universal_newlines=True)
b = subprocess.check_output([
"git --git-dir=" + os.path.join(srcroot, ".git") +
" rev-parse --abbrev-ref HEAD"
"git --git-dir=" + os.path.join(srcroot, ".git") +
" rev-parse --abbrev-ref HEAD"
], shell=True, universal_newlines=True)
b = b.strip()
else:
b = "NOGIT"
v = "NOGIT"
vcsfn = os.path.join(srcroot, "include", "vcs_version.h")
try:
......
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