From 9cf64111c2f280f1dda559ff4bd845d9c37febad Mon Sep 17 00:00:00 2001 From: Dane Springmeyer Date: Mon, 9 Mar 2009 00:27:06 +0000 Subject: [PATCH] scons: fix brain fade - need to return gdal lib name to populate env['LIBS'] if gdal libname is successfully parsed --- SConstruct | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SConstruct b/SConstruct index 922893527..0a7ed49c6 100644 --- a/SConstruct +++ b/SConstruct @@ -279,7 +279,7 @@ def get_pkg_lib(context, config, lib): if libnames: libname = libnames[0] context.Result( libname ) - return ret + return libname def parse_pg_config(context, config): env = context.env