From 34b77a15d36e21c67d5493e45955358589f7b9c5 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Sat, 20 Feb 2010 23:29:59 +1100 Subject: build: updates to waf scripts for replace and talloc --- lib/replace/wscript | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'lib/replace/wscript') diff --git a/lib/replace/wscript b/lib/replace/wscript index 45ce6cddf6..6baab09b03 100644 --- a/lib/replace/wscript +++ b/lib/replace/wscript @@ -13,8 +13,7 @@ def configure(conf): conf.env.hlist = [] # load our local waf extensions - conf.check_tool('autoconf', tooldir='. ../replace') - conf.check_rpath() + conf.check_tool('autoconf', tooldir=conf.curdir) conf.check_tool('compiler_cc') conf.DEFUN('_GNU_SOURCE', 1) @@ -114,12 +113,14 @@ main() { foo("hello"); } conf.write_config_header('config.h') def build(bld): + bld.set_rpath() + # the libreplace shared library bld( features = 'cc cshlib', source = 'replace.c', target='replace', - includes = '. default /usr/include') + includes = '. default') # test program bld( -- cgit