xdriver_xf86-video-sis: use += instead of = for CONF_OPTS assignment

Using += is always a good idea in conditional assignments, as it
prevents potential future mistakes if unconditional options are added;

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
This commit is contained in:
Thomas Petazzoni 2017-01-25 16:41:57 +13:00
parent 04c5e1ba16
commit 152351143a

View File

@ -13,7 +13,7 @@ XDRIVER_XF86_VIDEO_SIS_AUTORECONF = YES
XDRIVER_XF86_VIDEO_SIS_DEPENDENCIES = xserver_xorg-server libdrm xproto_fontsproto xproto_randrproto xproto_renderproto xproto_videoproto xproto_xextproto xproto_xf86dgaproto xproto_xf86driproto xproto_xineramaproto xproto_xproto
ifeq ($(BR2_PACKAGE_MESA3D_DRI_DRIVER),)
XDRIVER_XF86_VIDEO_SIS_CONF_OPTS = --disable-dri
XDRIVER_XF86_VIDEO_SIS_CONF_OPTS += --disable-dri
endif
$(eval $(autotools-package))