Skip to content

Commit

Permalink
ssrf: remove LIBRARY_PATH from makefile
Browse files Browse the repository at this point in the history
build.sh (line 468,469) uses LIBRARY_PATH, but make can do without.

Removed LIBRARY_PATH

Signed-off-by: Jan Iversen <[email protected]>
  • Loading branch information
janiversen authored and dirkhh committed Jul 6, 2018
1 parent 70c000c commit d1ee789
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit d1ee789

Please sign in to comment.