Mesa (master): winsys/drm: Correctly install EGL drivers.

Chia-I Wu olv at kemper.freedesktop.org
Mon Jan 25 15:03:19 UTC 2010


Module: Mesa
Branch: master
Commit: 2204447de320afe201a9369f57658cae0a11a440
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=2204447de320afe201a9369f57658cae0a11a440

Author: Chia-I Wu <olvaffe at gmail.com>
Date:   Mon Jan 25 22:29:51 2010 +0800

winsys/drm: Correctly install EGL drivers.

Remove extraneous quotes that prevent some drivers to be installed when
there are more than one display in EGL_DISPLAYS.

---

 src/gallium/winsys/drm/Makefile.egl |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/src/gallium/winsys/drm/Makefile.egl b/src/gallium/winsys/drm/Makefile.egl
index d79ceee..b1f2038 100644
--- a/src/gallium/winsys/drm/Makefile.egl
+++ b/src/gallium/winsys/drm/Makefile.egl
@@ -55,7 +55,7 @@ clean:
 
 install: $(EGL_DISPLAY_LIBS)
 	$(INSTALL) -d $(DESTDIR)$(EGL_DRIVER_INSTALL_DIR)
-	for lib in "$(EGL_DISPLAY_LIBS)"; do \
+	for lib in $(EGL_DISPLAY_LIBS); do \
 		$(MINSTALL) -m 755 "$$lib" $(DESTDIR)$(EGL_DRIVER_INSTALL_DIR); \
 	done
 




More information about the mesa-commit mailing list