mirror of
https://gitlab.freedesktop.org/wayland/wayland.git
synced 2026-02-18 22:05:55 -05:00
configure.ac: Fix test-for-empty bug
From Gaetan Nadon: ./configure: line 11662: test: !=: unary operator expected AM_CONDITIONAL([HAVE_XSLTPROC], [test $XSLTPROC != ""]) AM_CONDITIONAL([HAVE_PUBLICAN], [test $PUBLICAN != ""]) It shows up when you do not have publican. The usual "testing for blank" bug.
This commit is contained in:
parent
089c977a3b
commit
eccc324ca8
1 changed files with 2 additions and 2 deletions
|
|
@ -49,10 +49,10 @@ if test "x$enable_scanner" = "xyes"; then
|
|||
fi
|
||||
|
||||
AC_PATH_PROG(XSLTPROC, xsltproc)
|
||||
AM_CONDITIONAL([HAVE_XSLTPROC], [test $XSLTPROC != ""])
|
||||
AM_CONDITIONAL([HAVE_XSLTPROC], [test "x$XSLTPROC" != "x"])
|
||||
|
||||
AC_PATH_PROG(PUBLICAN, publican)
|
||||
AM_CONDITIONAL([HAVE_PUBLICAN], [test $PUBLICAN != ""])
|
||||
AM_CONDITIONAL([HAVE_PUBLICAN], [test "x$PUBLICAN" != "x"])
|
||||
|
||||
AC_CONFIG_FILES([Makefile
|
||||
wayland-scanner.m4
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue