From: Chia-I Wu Date: Mon, 25 Jan 2010 14:29:51 +0000 (+0800) Subject: winsys/drm: Correctly install EGL drivers. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=2204447de320afe201a9369f57658cae0a11a440;p=mesa.git 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. --- diff --git a/src/gallium/winsys/drm/Makefile.egl b/src/gallium/winsys/drm/Makefile.egl index d79ceee5b78..b1f20385502 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