diff options
Diffstat (limited to 'src/gallium')
-rw-r--r-- | src/gallium/targets/dri-swrast/Makefile | 2 | ||||
-rw-r--r-- | src/gallium/targets/dri-swrast/SConscript | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/gallium/targets/dri-swrast/Makefile b/src/gallium/targets/dri-swrast/Makefile index 948c45abe5c..45b933e3f93 100644 --- a/src/gallium/targets/dri-swrast/Makefile +++ b/src/gallium/targets/dri-swrast/Makefile @@ -1,7 +1,7 @@ TOP = ../../../.. include $(TOP)/configs/current -LIBNAME = swrastg_dri.so +LIBNAME = swrast_dri.so DRIVER_DEFINES = \ -D__NOT_HAVE_DRM_H -DGALLIUM_SOFTPIPE \ diff --git a/src/gallium/targets/dri-swrast/SConscript b/src/gallium/targets/dri-swrast/SConscript index 33acc614e76..6b64c56413c 100644 --- a/src/gallium/targets/dri-swrast/SConscript +++ b/src/gallium/targets/dri-swrast/SConscript @@ -29,13 +29,13 @@ if env['llvm']: env.Append(CPPDEFINES = 'GALLIUM_LLVMPIPE') env.Prepend(LIBS = [llvmpipe]) -swrastg_sources = [ +swrast_sources = [ 'swrast_drm_api.c' ] module = env.LoadableModule( - target ='swrastg_dri.so', - source = swrastg_sources, + target ='swrast_dri.so', + source = swrast_sources, SHLIBPREFIX = '', ) |