Module: Mesa Branch: master Commit: 2204447de320afe201a9369f57658cae0a11a440 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=2204447de320afe201a9369f57658cae0a11a440
Author: Chia-I Wu <[email protected]> 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 _______________________________________________ mesa-commit mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/mesa-commit
