summaryrefslogtreecommitdiff
path: root/src/egl/wayland
diff options
context:
space:
mode:
authorEmil Velikov <emil.velikov@collabora.com>2018-03-08 17:07:39 +0000
committerEmil Velikov <emil.l.velikov@gmail.com>2018-03-12 14:48:52 +0000
commit8151f5cad9dc890e2c27496a3b8f23debbf8e71e (patch)
tree59b707588926da23057d0063f097d7b5d2ee00c4 /src/egl/wayland
parent1178e0cf49b0611c8dcf89c829d30d725be5c12a (diff)
wayland-drm: autotools: do not redirect stdin/stdout for wayland-scanner
The tool accepts the input and output files as arguments. There's no need for the redirection. Signed-off-by: Emil Velikov <emil.velikov@collabora.com> Reviewed-by: Dylan Baker <dylan@pnwbakers.com>
Diffstat (limited to 'src/egl/wayland')
-rw-r--r--src/egl/wayland/wayland-drm/Makefile.am6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/egl/wayland/wayland-drm/Makefile.am b/src/egl/wayland/wayland-drm/Makefile.am
index 7d1db23f4b9..c10c4349d48 100644
--- a/src/egl/wayland/wayland-drm/Makefile.am
+++ b/src/egl/wayland/wayland-drm/Makefile.am
@@ -18,10 +18,10 @@ BUILT_SOURCES = wayland-drm-protocol.c \
CLEANFILES = $(BUILT_SOURCES)
%-protocol.c : %.xml
- $(AM_V_GEN)$(WAYLAND_SCANNER) code < $< > $@
+ $(AM_V_GEN)$(WAYLAND_SCANNER) code $< $@
%-server-protocol.h : %.xml
- $(AM_V_GEN)$(WAYLAND_SCANNER) server-header < $< > $@
+ $(AM_V_GEN)$(WAYLAND_SCANNER) server-header $< $@
%-client-protocol.h : %.xml
- $(AM_V_GEN)$(WAYLAND_SCANNER) client-header < $< > $@
+ $(AM_V_GEN)$(WAYLAND_SCANNER) client-header $< $@