Commit 34e660e2 authored by Guillaume Quintard's avatar Guillaume Quintard

backslashes seems to confuse cpp

parent ff7838c5
...@@ -18,13 +18,13 @@ LOCAL_CONFIGURE_FLAGS += --disable-jemalloc ...@@ -18,13 +18,13 @@ LOCAL_CONFIGURE_FLAGS += --disable-jemalloc
endif endif
VARNISHD_ABI = $(shell \ VARNISHD_ABI = $(shell \
printf '\#include "vcs_version.h"\nVCS_Version\n' | \ printf '#include "vcs_version.h"\nVCS_Version\n' | \
cpp - -Iinclude | \ cpp - -Iinclude | \
tail -1 | \ tail -1 | \
tr -d '"') tr -d '"')
VARNISHD_VRT = $(shell \ VARNISHD_VRT = $(shell \
printf '\#include "vdef.h"\n\#include "vrt.h"\n%s.%s\n' \ printf '#include "vdef.h"\n#include "vrt.h"\n%s.%s\n' \
VRT_MAJOR_VERSION VRT_MINOR_VERSION | \ VRT_MAJOR_VERSION VRT_MINOR_VERSION | \
cpp - -Iinclude | \ cpp - -Iinclude | \
tail -1 | \ tail -1 | \
......
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