Skip to content
Snippets Groups Projects
Commit 16af7d46 authored by Nico Dechesne (Stage)'s avatar Nico Dechesne (Stage)
Browse files

signlk.sh: use make -C instead of shell variable


Signed-off-by: default avatarNicolas Dechesne <nicolas.dechesne@linaro.org>
parent d113efa1
Branches 64bit
No related tags found
No related merge requests found
CXX=g++
cur-dir := $(mfile_path)
cur-dir := $(shell pwd)
ELFIODIR=${cur-dir}/ELFIO/elfio/
SOURCES=${cur-dir}/signlk.cpp
CPPFLAGS=-c -Wall -std=c++0x -I$(cur-dir)/ELFIO/
......
......@@ -108,8 +108,7 @@ if [ ! "$(g++ --version)" ]; then
exit 8
fi
export mfile_path=$DIR/signer
make -f $mfile_path/Makefile
make -C $DIR/signer
if [ "$?" != 0 ]; then
echo " failed to build executable"
......
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