From 27a5936f76d27c3ff3981abf6208ed7655aaf3d5 Mon Sep 17 00:00:00 2001 From: JanLehnardt Date: Sun, 16 Sep 2007 23:41:38 +0000 Subject: [PATCH] improve makefile portability. patch by Stig Brautaset git-svn-id: http://couchdb.googlecode.com/svn/trunk@194 efc57d8c-411c-0410-91b3-cfdf4dd2bc77 --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index b4213d1..ba95873 100644 --- a/Makefile +++ b/Makefile @@ -3,8 +3,8 @@ # This program is Free Software. See license.txt -UNICODE_INCLUDE_DIR ?= /usr/include -UNICODE_LIB_DIR ?= /usr/lib +UNICODE_INCLUDE_DIR ?= $(shell icu-config --prefix) +UNICODE_LIB_DIR ?= $(shell icu-config --icudata-install-dir) ERLANG_INCLUDE_DIR ?= /usr/lib/erlang/driver COUCHDB_INSTALL_DIR ?= /usr/local/couchdb ERL ?= /usr/bin/erl -- 2.11.4.GIT