need second var deref
This commit is contained in:
parent
4af73b60ed
commit
e92706e3af
1 changed files with 3 additions and 3 deletions
6
Makefile
6
Makefile
|
|
@ -36,10 +36,10 @@ windows_SO_TYPE:=dll
|
|||
osx_SO_TYPE:=bundle
|
||||
beos_SO_TYPE:=so
|
||||
linux_SO_TYPE:=so
|
||||
SO_TYPE:=$(OS)_SO_TYPE
|
||||
SO_TYPE:=$($(OS)_SO_TYPE)
|
||||
|
||||
windows_EXE_EXT:=.exe
|
||||
EXE_EXT:=$(OS)_EXE_EXT
|
||||
EXE_EXT:=$($(OS)_EXE_EXT)
|
||||
|
||||
# Where to install things:
|
||||
|
||||
|
|
@ -47,7 +47,7 @@ windows_PREFIX:=/usr/local
|
|||
osx_PREFIX:=/usr/local
|
||||
beos_PREFIX:=./
|
||||
linux_PREFIX:=/usr/local
|
||||
PREFIX:=$(OS)_PREFIX
|
||||
PREFIX:=$($(OS)_PREFIX)
|
||||
|
||||
|
||||
# Root directory to place files when creating packages.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue