From 1a9d9b058c74c6e73da85ee90334a087844a36b2 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Fri, 5 Oct 2012 08:53:18 +0000 Subject: Fix wscript when PKG_CONFIG_PATH is empty. git-svn-id: svn://localhost/ardour2/branches/3.0@13210 d708f5d6-7413-0410-9779-e7cbd77b26cf --- wscript | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'wscript') diff --git a/wscript b/wscript index 8d46b1b857..6f5a6df3cc 100644 --- a/wscript +++ b/wscript @@ -471,7 +471,8 @@ def configure(conf): # where we need to pick it up from the GTK dependency stack. # user_gtk_root = os.path.expanduser ('~/gtk/inst') - if not os.path.isfile ('/usr/include/libintl.h') or os.getenv('PKG_CONFIG_PATH').find (user_gtk_root) >= 0: + pkg_config_path = os.getenv('PKG_CONFIG_PATH') + if not os.path.isfile ('/usr/include/libintl.h') or (pkg_config_path is not None and pkg_config_path.find (user_gtk_root) >= 0): # XXXX hack hack hack prefinclude = ''.join ([ '-I', user_gtk_root + '/include']) preflib = ''.join ([ '-L', user_gtk_root + '/lib']) @@ -484,7 +485,7 @@ def configure(conf): autowaf.display_msg(conf, 'Will use explicit linkage against libintl in ', 'no') user_ardour_root = os.path.expanduser ('~/a3/inst') - if os.getenv('PKG_CONFIG_PATH').find (user_ardour_root) >= 0: + if pkg_config_path is not None and os.getenv('PKG_CONFIG_PATH').find (user_ardour_root) >= 0: # XXXX hack hack hack prefinclude = ''.join ([ '-I', user_ardour_root + '/include']) preflib = ''.join ([ '-L', user_ardour_root + '/lib']) -- cgit v1.2.3