From e92706e3af50a817fd61b5b9619f6d4b9c186316 Mon Sep 17 00:00:00 2001 From: Albert Cahalan Date: Sun, 4 May 2008 08:20:34 +0000 Subject: [PATCH] need second var deref --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index b8ec7a8e9..45eaf70dd 100644 --- a/Makefile +++ b/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.