egl: fix line continuation
authorEric Engestrom <eric.engestrom@imgtec.com>
Wed, 19 Jul 2017 14:30:32 +0000 (15:30 +0100)
committerEric Engestrom <eric.engestrom@imgtec.com>
Wed, 19 Jul 2017 14:51:54 +0000 (15:51 +0100)
Trailing space after the backslash meant the rest of the AM_CFLAGS lines
were no longer included.
This has been silently ignored because of the next line starting with
a `-` dash, instructing make to be silent about that line.

Fixes: 02cc359372773800de81 "egl/wayland: Use linux-dmabuf interface for buffers"
Cc: Daniel Stone <daniels@collabora.com>
Signed-off-by: Eric Engestrom <eric.engestrom@imgtec.com>
Reviewed-by: Daniel Stone <daniels@collabora.com>
src/egl/Makefile.am

index 52ded151452f63b85972c09ba9f61317f5c0466b..7c1a4929b81a23ac92efad8e005b9f2a02e9be5a 100644 (file)
@@ -105,7 +105,7 @@ endif
 
 AM_CFLAGS += \
        -I$(top_srcdir)/src/loader \
 
 AM_CFLAGS += \
        -I$(top_srcdir)/src/loader \
-       -I$(top_builddir)/src/egl/drivers/dri2 \ 
+       -I$(top_builddir)/src/egl/drivers/dri2 \
        -I$(top_srcdir)/src/egl/drivers/dri2 \
        -I$(top_srcdir)/src/gbm/backends/dri \
        -I$(top_srcdir)/src/egl/wayland/wayland-egl \
        -I$(top_srcdir)/src/egl/drivers/dri2 \
        -I$(top_srcdir)/src/gbm/backends/dri \
        -I$(top_srcdir)/src/egl/wayland/wayland-egl \