Masakazu Kitajo created TS-4074:
-----------------------------------
Summary: build_* variables need to be escaped
Key: TS-4074
URL: https://issues.apache.org/jira/browse/TS-4074
Project: Traffic Server
Issue Type: Bug
Components: Build
Reporter: Masakazu Kitajo
BUILD_PERSON, BUILD_GROUP and BUILD_MACHINE need to be escaped.
{noformat}
traffic_layout.cc:79:32: error: unknown escape sequence '\D'
[-Werror,-Wunknown-escape-sequence]
print_feature("BUILD_GROUP", BUILD_GROUP, json);
^
../../lib/ts/ink_config.h:49:46: note: expanded from macro 'BUILD_GROUP'
#define BUILD_GROUP "XXX\Domain Users"
{noformat}
Current configure.ac
{code}
build_person="`id -nu`"
build_group="`id -ng`"
build_machine="`uname -n`"
{code}
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)