Skip to content
Snippets Groups Projects
Commit 0df480f3 authored by Clemens Terasa's avatar Clemens Terasa
Browse files

bball_qml: Fix Makefile race

The bbal_qml Makefile tries to copy the bball files into a bin
directrory. However, it might not have be created before, depending on
the execution order of the testcases. Create the bid directory in the 
bball_qml as well if necessary.

Also use the "@" Makefile notation to hide the single steps in the logs.
parent 86140aef
Branches rocko
No related tags found
1 merge request!27bball_qml: Fix Makefile race
......@@ -2,6 +2,6 @@
TARGET=bball_sdl
all:
cp bball.qml ../bin/
cp bball_qml ../bin/
chmod +x ../bin/bball_qml
@mkdir -p ../bin
@cp bball.qml bball_qml ../bin/
@chmod +x ../bin/bball_qml
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment