From d1ee789558d9f6d71f96a354a9cc756953c80875 Mon Sep 17 00:00:00 2001 From: jan Iversen Date: Fri, 6 Jul 2018 15:26:54 +0200 Subject: [PATCH] ssrf: remove LIBRARY_PATH from makefile build.sh (line 468,469) uses LIBRARY_PATH, but make can do without. Removed LIBRARY_PATH Signed-off-by: Jan Iversen --- makefile | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/makefile b/makefile index effbdb4b2..a1ee79bc4 100644 --- a/makefile +++ b/makefile @@ -11,17 +11,17 @@ default_target: all mobile: if test ! -d build-mobile; then (echo "error: please run build.sh before make"; exit -1;); fi - cd build-mobile; LIBRARY_PATH=../install_root/lib make - cd build-mobile; LIBRARY_PATH=../install_root/lib make install + cd build-mobile; make + cd build-mobile; make install desktop: if test ! -d build; then (echo "error: please run build.sh before make"; exit -1;); fi - cd build; LIBRARY_PATH=../install_root/lib make - cd build; LIBRARY_PATH=../install_root/lib make install + cd build; make + cd build; make install check: if test ! -d build; then (echo "error: please run build.sh before make"; exit -1;); fi - cd build; LIBRARY_PATH=../install_root/lib make check + cd build; make check all: desktop mobile check