mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
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 <jani@apache.org>
This commit is contained in:
parent
70c000c905
commit
d1ee789558
1 changed files with 5 additions and 5 deletions
10
makefile
10
makefile
|
|
@ -11,17 +11,17 @@ default_target: all
|
||||||
|
|
||||||
mobile:
|
mobile:
|
||||||
if test ! -d build-mobile; then (echo "error: please run build.sh before make"; exit -1;); fi
|
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; make
|
||||||
cd build-mobile; LIBRARY_PATH=../install_root/lib make install
|
cd build-mobile; make install
|
||||||
|
|
||||||
desktop:
|
desktop:
|
||||||
if test ! -d build; then (echo "error: please run build.sh before make"; exit -1;); fi
|
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; make
|
||||||
cd build; LIBRARY_PATH=../install_root/lib make install
|
cd build; make install
|
||||||
|
|
||||||
check:
|
check:
|
||||||
if test ! -d build; then (echo "error: please run build.sh before make"; exit -1;); fi
|
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
|
all: desktop mobile check
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue