From 89403a24b30faa791b793b9cae048f99175cab16 Mon Sep 17 00:00:00 2001 From: Norman Feske Date: Sat, 28 Dec 2013 19:49:38 +0100 Subject: [PATCH] Avoid target-name ambiguity of "test-thread" Both base/src/test/thread and base-okl4/src/test/okl4_03_thread used the same target name, which ultimately confused the build system when building on OKL4. --- base-okl4/src/test/okl4_03_thread/target.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/base-okl4/src/test/okl4_03_thread/target.mk b/base-okl4/src/test/okl4_03_thread/target.mk index 00d9354404..de0c665865 100644 --- a/base-okl4/src/test/okl4_03_thread/target.mk +++ b/base-okl4/src/test/okl4_03_thread/target.mk @@ -1,4 +1,4 @@ -TARGET = test-thread +TARGET = test-okl4_thread REQUIRES = okl4 LIBS = cxx core_printf ipc SRC_CC = main.cc