mirror of
https://gitlab.freedesktop.org/wayland/weston.git
synced 2026-05-14 16:38:18 +02:00
autotools: Fix AC_PATH_PROG call
Signed-off-by: Quentin Glidic <sardemff7+git@sardemff7.net>
This commit is contained in:
parent
eec6aee490
commit
9f43cb48aa
1 changed files with 4 additions and 2 deletions
|
|
@ -424,8 +424,10 @@ if test "x$have_lcms" = xyes; then
|
|||
fi
|
||||
AM_CONDITIONAL(HAVE_LCMS, [test "x$have_lcms" = xyes])
|
||||
|
||||
AC_PATH_PROG([wayland_scanner], [wayland-scanner],
|
||||
[AC_MSG_ERROR("wayland-scanner is needed to compile weston")])
|
||||
AC_PATH_PROG([wayland_scanner], [wayland-scanner])
|
||||
if test x$wayland_scanner = x; then
|
||||
AC_MSG_ERROR([wayland-scanner is needed to compile weston])
|
||||
fi
|
||||
|
||||
AC_CONFIG_FILES([Makefile
|
||||
shared/Makefile
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue