소스 검색

package/wlroots: check for BR2_PACKAGE_SEATD

Fix the wlroots packaging by checking for the correct variable to
determine whether seatd is being built.

Signed-off-by: Adrian Perez de Castro <aperez@igalia.com>
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
Adrian Perez de Castro 4 년 전
부모
커밋
f1e65b0b96
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      package/wlroots/wlroots.mk

+ 1 - 1
package/wlroots/wlroots.mk

@@ -46,7 +46,7 @@ else
 WLROOTS_CONF_OPTS += -Dx11-backend=disabled -Dxwayland=disabled
 endif
 
-ifeq ($(BR2_PACKAGE_SEATD_LIBSEAT),y)
+ifeq ($(BR2_PACKAGE_SEATD),y)
 WLROOTS_CONF_OPTS += -Dlibseat=enabled
 WLROOTS_DEPENDENCIES += seatd
 else