From: Eric Anholt Date: Wed, 25 Jan 2012 22:42:45 +0000 (-0800) Subject: radeon: Fix missing dri common symbols after automake conversion. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=5fa27eafc81fee0a0b4b22953538a89811b35b7b;p=mesa.git radeon: Fix missing dri common symbols after automake conversion. Reviewed-by: Matt Turner --- diff --git a/src/mesa/drivers/dri/r200/Makefile.am b/src/mesa/drivers/dri/r200/Makefile.am index e83c5b71374..d128deedd4b 100644 --- a/src/mesa/drivers/dri/r200/Makefile.am +++ b/src/mesa/drivers/dri/r200/Makefile.am @@ -52,7 +52,8 @@ r200_dri_la_LDFLAGS = -module -avoid-version -shared r200_dri_la_LIBADD = \ $(DRI_LIB_DEPS) \ $(DRICORE_LIB_DEPS) \ - $(RADEON_LIBS) + $(RADEON_LIBS) \ + ../common/libdricommon.la # Provide compatibility with scripts for the old Mesa build system for # a while by putting a link to the driver into /lib of the build tree. diff --git a/src/mesa/drivers/dri/radeon/Makefile.am b/src/mesa/drivers/dri/radeon/Makefile.am index 27e6ea58d69..56f6d392083 100644 --- a/src/mesa/drivers/dri/radeon/Makefile.am +++ b/src/mesa/drivers/dri/radeon/Makefile.am @@ -52,7 +52,8 @@ radeon_dri_la_LDFLAGS = -module -avoid-version -shared radeon_dri_la_LIBADD = \ $(DRI_LIB_DEPS) \ $(DRICORE_LIB_DEPS) \ - $(RADEON_LIBS) + $(RADEON_LIBS) \ + ../common/libdricommon.la # Provide compatibility with scripts for the old Mesa build system for # a while by putting a link to the driver into /lib of the build tree.