diff options
author | Emil Velikov <[email protected]> | 2018-03-08 16:16:18 +0000 |
---|---|---|
committer | Emil Velikov <[email protected]> | 2018-03-12 14:48:52 +0000 |
commit | 1178e0cf49b0611c8dcf89c829d30d725be5c12a (patch) | |
tree | a7849b6a45788823cf8838bc178dbd7152ee98f7 /src/egl | |
parent | 08189731a4a265381896bef81994fbabe0cc4b8a (diff) |
egl: 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 <[email protected]>
Reviewed-by: Dylan Baker <[email protected]>
Diffstat (limited to 'src/egl')
-rw-r--r-- | src/egl/Makefile.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/egl/Makefile.am b/src/egl/Makefile.am index 9fcee9d2b84..285d3caa9ef 100644 --- a/src/egl/Makefile.am +++ b/src/egl/Makefile.am @@ -70,11 +70,11 @@ WL_DMABUF_XML = $(WAYLAND_PROTOCOLS_DATADIR)/unstable/linux-dmabuf/linux-dmabuf- drivers/dri2/linux-dmabuf-unstable-v1-protocol.c: $(WL_DMABUF_XML) $(MKDIR_GEN) - $(AM_V_GEN)$(WAYLAND_SCANNER) code < $< > $@ + $(AM_V_GEN)$(WAYLAND_SCANNER) code $< $@ drivers/dri2/linux-dmabuf-unstable-v1-client-protocol.h: $(WL_DMABUF_XML) $(MKDIR_GEN) - $(AM_V_GEN)$(WAYLAND_SCANNER) client-header < $< > $@ + $(AM_V_GEN)$(WAYLAND_SCANNER) client-header $< $@ if HAVE_PLATFORM_WAYLAND drivers/dri2/linux-dmabuf-unstable-v1-protocol.lo: drivers/dri2/linux-dmabuf-unstable-v1-client-protocol.h |