parsec: fix aarch64 build

The error was:

[PARSEC] Error: Binary '/home/ciro/bak/git/linux-kernel-module-cheat/out/aarch64/buildroot/build/parsec-benchmark-custom/ext/splash2x/apps/barnes/inst/"aarch64"-linux.gcc/bin/run.sh' of package 'splash2x.barnes'
 cannot be found.

due to some quoting madness.
This commit is contained in:
Ciro Santilli
2018-03-29 11:41:05 +01:00
parent 9fd72c786f
commit b6e8a7d1d1

View File

@@ -23,7 +23,7 @@ define PARSEC_BENCHMARK_BUILD_CMDS
export MAKE='$(MAKE)'; \
export OSTYPE=linux; \
export TARGET_CROSS='$(TARGET_CROSS)'; \
export HOSTTYPE='$(BR2_ARCH)'; \
export HOSTTYPE=$(BR2_ARCH); \
parsecmgmt -a build -p $$pkg; \
if [ ! '$(BR2_PACKAGE_PARSEC_BENCHMARK_PARSECMGMT)' = y ]; then \
parsecmgmt -a run -p $$pkg -i $(BR2_PACKAGE_PARSEC_BENCHMARK_INPUT_SIZE); \