From df3bfb2771c0b4e0ee0a50b17a4eb9875b6619a4 Mon Sep 17 00:00:00 2001 From: "Gustavo J. A. M. Carneiro" Date: Thu, 27 Sep 2007 12:44:29 +0100 Subject: [PATCH] WAF: set env['INCLUDEDIR'] to PREFIX/include so that ns3 headers get installed on 'waf install' (also shuts up the warnings in waf distcheck) --- wscript | 2 ++ 1 file changed, 2 insertions(+) diff --git a/wscript b/wscript index 68f100e83..a02db75da 100644 --- a/wscript +++ b/wscript @@ -95,6 +95,8 @@ def configure(conf): else: variant_name = debug_level + variant_env['INCLUDEDIR'] = os.path.join(variant_env['PREFIX'], 'include') + if Params.g_options.enable_gcov: variant_name += '-gcov' variant_env.append_value('CCFLAGS', '-fprofile-arcs')