diff options
author | José Fonseca <[email protected]> | 2011-01-13 12:33:41 +0000 |
---|---|---|
committer | José Fonseca <[email protected]> | 2011-01-13 12:33:41 +0000 |
commit | 9277a62aa3c1b2073dcfafcf34265b4d7154f4da (patch) | |
tree | 497e252d5bab38c51a812f6dc735abb28b49854a /src | |
parent | 63528c4510e4891a13c255871b1dd5c2dafdb02c (diff) |
scons: Ensure the OpenVG/EGL import libs are also prefixed with 'lib'.
Diffstat (limited to 'src')
-rw-r--r-- | src/gallium/targets/egl-static/SConscript | 1 | ||||
-rw-r--r-- | src/mapi/vgapi/SConscript | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/src/gallium/targets/egl-static/SConscript b/src/gallium/targets/egl-static/SConscript index 3eba9e07f20..25c49ea9d18 100644 --- a/src/gallium/targets/egl-static/SConscript +++ b/src/gallium/targets/egl-static/SConscript @@ -112,6 +112,7 @@ if env['drm']: ]) # libEGL.dll +env['LIBPREFIX'] = 'lib' env['SHLIBPREFIX'] = 'lib' egl_gallium = env.SharedLibrary( diff --git a/src/mapi/vgapi/SConscript b/src/mapi/vgapi/SConscript index e970e4eff84..ee6d9fb827c 100644 --- a/src/mapi/vgapi/SConscript +++ b/src/mapi/vgapi/SConscript @@ -45,6 +45,7 @@ if env['platform'] != 'winddk': env.Depends(vgapi_objects, vgapi_header) # libOpenVG.dll + env['LIBPREFIX'] = 'lib' env['SHLIBPREFIX'] = 'lib' openvg = env.SharedLibrary( |