diff options
author | Romain Forlot <romain.forlot@iot.bzh> | 2018-07-25 15:32:29 +0200 |
---|---|---|
committer | Romain Forlot <romain.forlot@iot.bzh> | 2018-07-26 16:22:38 +0000 |
commit | 9c1a0fb10dda08bebffb490152b5cdde6420e18a (patch) | |
tree | 7ed9900eec15750e47056b22b59fd0fa621d12e1 | |
parent | 9202fac0b692d6a244f76ddf5561aeffb8db256a (diff) |
Fix: interpreted '&' character
Use of '&' in CLOSING_MESSAGE is incorrectly interpreted by cmake
which tries to launch the afb-daemon when using the autobuild script.
This is not a problem since the build is finished but that produces
unwanted warning messages.
Change-Id: I910538c80539bbe6ec63cf42a7642506821bb33b
Signed-off-by: Romain Forlot <romain.forlot@iot.bzh>
-rw-r--r-- | samples.d/config.cmake.sample | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/samples.d/config.cmake.sample b/samples.d/config.cmake.sample index 457992b..68f8236 100644 --- a/samples.d/config.cmake.sample +++ b/samples.d/config.cmake.sample @@ -182,7 +182,7 @@ set(AFB_REMPORT "1234" CACHE PATH "Default binder listening port") # Print a helper message when every thing is finished # ---------------------------------------------------- -set(CLOSING_MESSAGE "Typical binding launch: cd ${CMAKE_BINARY_DIR}/package && afb-daemon --port=${AFB_REMPORT} --workdir=. --ldpaths=lib --roothttp=htdocs --token=\"${AFB_TOKEN}\" --tracereq=common --verbose") +set(CLOSING_MESSAGE "Typical binding launch: cd ${CMAKE_BINARY_DIR}/package \\&\\& afb-daemon --port=${AFB_REMPORT} --workdir=. --ldpaths=lib --roothttp=htdocs --token=\"${AFB_TOKEN}\" --tracereq=common --verbose") set(PACKAGE_MESSAGE "Install widget file using in the target : afm-util install ${PROJECT_NAME}.wgt") # Optional schema validator about now only XML, LUA and JSON |