From 00bce69784e587c550b9ca75597c84403e770c9a Mon Sep 17 00:00:00 2001 From: Ciro Santilli Date: Mon, 26 Mar 2018 10:27:22 +0100 Subject: [PATCH] parsec: fix build undefined $(D) to $(@D) --- parsec-benchmark/external.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/parsec-benchmark/external.mk b/parsec-benchmark/external.mk index 682c574..d44a1f8 100644 --- a/parsec-benchmark/external.mk +++ b/parsec-benchmark/external.mk @@ -33,7 +33,7 @@ endef define PARSEC_BENCHMARK_INSTALL_TARGET_CMDS mkdir -p '$(TARGET_DIR)/parsec/' - $(INSTALL) -D -m 0755 '$(D)/test.sh' '$(TARGET_DIR)/parsec/' + $(INSTALL) -D -m 0755 '$(@D)/test.sh' '$(TARGET_DIR)/parsec/' if [ '$(BR2_PACKAGE_PARSEC_BENCHMARK_PARSECMGMT)' = y ]; then \ rsync -am $(if $(filter $(V),1),-v,) \ --exclude '**/obj/' \