haiku: Correct Haiku softpipe library

* Use LoadableModule vs SharedLibrary
This commit is contained in:
Alexander von Gluck IV 2013-10-03 02:14:20 +00:00
parent 8730236d1a
commit bc2fb19773

View file

@ -36,7 +36,7 @@ softpipe_sources = [
] ]
# libswpipe gets turned into "Software Renderer" by the haiku package system # libswpipe gets turned into "Software Renderer" by the haiku package system
module = env.SharedLibrary( module = env.LoadableModule(
target ='swpipe', target ='swpipe',
source = softpipe_sources, source = softpipe_sources,
) )