diff options
-rwxr-xr-x | tools/xmlGenerator/hostDomainGenerator.sh | 7 |
1 files changed, 7 insertions, 0 deletions
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:-}" |