From 1f997b5492e8cb6ae80cf1805fb6e966784d0a9d Mon Sep 17 00:00:00 2001 From: Kevin Rocard Date: Wed, 25 Sep 2013 16:40:10 +0200 Subject: [Workaround] Force execution right BZ: 122982 The build system does not preserve execution right in external prebuild Add the execution rights witch chmod on executables. Change-Id: Ieac44050e80df0e0f83e1a6b947edc432ef00260 Signed-off-by: Kevin Rocard Reviewed-on: http://android.intel.com:8080/134359 Reviewed-by: Gonzalve, Sebastien Tested-by: Barthes, FabienX Reviewed-by: cactus Tested-by: cactus --- tools/xmlGenerator/hostDomainGenerator.sh | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'tools') diff --git a/tools/xmlGenerator/hostDomainGenerator.sh b/tools/xmlGenerator/hostDomainGenerator.sh index 00bde35..f401d4e 100755 --- a/tools/xmlGenerator/hostDomainGenerator.sh +++ b/tools/xmlGenerator/hostDomainGenerator.sh @@ -69,6 +69,13 @@ PFWSocket=5000 tmpFile=$(mktemp) testPlatformPID=0 +# [Workaround] +# The build system does not preserve execution right in external prebuild +for file in "$testPlatform" "$remoteProcess" "$hostConfig" "$PFWScriptGenerator" +do + chmod +x "${HostRoot}/bin/${file}" +done + # Set environment paths export LD_LIBRARY_PATH="$HostRoot/lib:${LD_LIBRARY_PATH:-}" -- cgit v1.1