scons: fix brain fade - need to return gdal lib name to populate env['LIBS'] if gdal libname is successfully parsed

This commit is contained in:
Dane Springmeyer 2009-03-09 00:27:06 +00:00
parent 40ef82f225
commit 9cf64111c2

View file

@ -279,7 +279,7 @@ def get_pkg_lib(context, config, lib):
if libnames: if libnames:
libname = libnames[0] libname = libnames[0]
context.Result( libname ) context.Result( libname )
return ret return libname
def parse_pg_config(context, config): def parse_pg_config(context, config):
env = context.env env = context.env