From: Andre Noll <maan@systemlinux.org>
Date: Thu, 5 Nov 2009 10:27:05 +0000 (+0100)
Subject: Don't use ?:= for setting PREFIX.
X-Git-Tag: v0.1.1~4
X-Git-Url: https://git.tuebingen.mpg.de/?a=commitdiff_plain;h=3448f4caccded0a60aa5f81976cd8c285908e7bb;p=osl.git

Don't use ?:= for setting PREFIX.

This does not work with all versions of (gnu) make.
---

diff --git a/Makefile b/Makefile
index 76925a6..1f125c6 100644
--- a/Makefile
+++ b/Makefile
@@ -1,5 +1,5 @@
 # where to install
-PREFIX ?:= /usr/local
+PREFIX ?= /usr/local
 libdir := $(PREFIX)/lib
 includedir := $(PREFIX)/include
 bindir := $(PREFIX)/bin