Skip to content
Snippets Groups Projects
Commit f22c0614 authored by Daniel Salzman's avatar Daniel Salzman
Browse files

Fix make problem with missing ragel

If the ragel isn't found, use echo command instead of blank variable.
parent 05669898
Branches
Tags
No related merge requests found
......@@ -51,7 +51,7 @@ AS_IF([test "x$YACC_BISON" != "xbison"],
AC_PROG_INSTALL
# Check for Ragel
AC_PATH_PROG(RAGEL, ragel)
AC_PATH_PROG([RAGEL], [ragel], [echo !UNPROCESSED! ragel])
# Set compiler compatibility flags
AC_PROG_CPP_WERROR
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment