diff options
author | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2021-01-20 15:25:59 +0000 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2021-01-22 15:58:05 +0000 |
commit | 7fb1198d950cae75aed3737ab9b3cf656d2c23d6 (patch) | |
tree | a3454ca2ed17a439388743ee5e9f93bab2fa6304 /cmake | |
parent | 19ec44180cef856f21d39db54364d162c972dc05 (diff) | |
download | rspamd-7fb1198d950cae75aed3737ab9b3cf656d2c23d6.tar.gz rspamd-7fb1198d950cae75aed3737ab9b3cf656d2c23d6.zip |
[Minor] Another ragel fix
Diffstat (limited to 'cmake')
-rw-r--r-- | cmake/FindRagel.cmake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmake/FindRagel.cmake b/cmake/FindRagel.cmake index d02a00bea..c94920e24 100644 --- a/cmake/FindRagel.cmake +++ b/cmake/FindRagel.cmake @@ -81,7 +81,7 @@ ${RAGEL_version_error}") add_custom_command(OUTPUT ${RAGEL_OUTPUT} COMMAND ${RAGEL_EXECUTABLE} ARGS ${RAGEL_COMPILE_FLAGS} - -o${RAGEL_OUTPUT_RELATIVE} ${RAGEL_INPUTS_RELATIVE} + -o${RAGEL_OUTPUT} ${RAGEL_INPUTS} DEPENDS ${RAGEL_INPUTS} ${RAGEL_DEPENDS} COMMENT "[RAGEL][${Name}] Compiling state machine with Ragel ${RAGEL_VERSION} -> ${RAGEL_OUTPUT}" |