projects
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
cb64ca5
)
winsys/drm: Correctly install EGL drivers.
author
Chia-I Wu
<olvaffe@gmail.com>
Mon, 25 Jan 2010 14:29:51 +0000
(22:29 +0800)
committer
Chia-I Wu
<olvaffe@gmail.com>
Mon, 25 Jan 2010 15:06:05 +0000
(23:06 +0800)
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
patch
|
blob
|
history
diff --git
a/src/gallium/winsys/drm/Makefile.egl
b/src/gallium/winsys/drm/Makefile.egl
index d79ceee5b789a8ace103b65b0eb6af293094eba2..b1f20385502899f1b23d6341873db0bf4548a1b5 100644
(file)
--- 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