summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorChia-I Wu <olvaffe@gmail.com>2010-01-25 22:29:51 +0800
committerChia-I Wu <olvaffe@gmail.com>2010-01-25 23:06:05 +0800
commit2204447de320afe201a9369f57658cae0a11a440 (patch)
tree4e29d17eccf2f43209f2ad32697ed4cc47c0ebe2 /src
parentcb64ca5066a3f4611680aa8c9a5d1caf68538cb5 (diff)
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.
Diffstat (limited to 'src')
-rw-r--r--src/gallium/winsys/drm/Makefile.egl2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/winsys/drm/Makefile.egl b/src/gallium/winsys/drm/Makefile.egl
index d79ceee5b7..b1f2038550 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