You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Some parameters (like "${SYSDIG_DIR}/driver" and "${PROJECT_SOURCE_DIR}/scripts/debian/falco") are passed to CMake commands in your build scripts without enclosing them by quotation marks. I see that these places will result in build difficulties if the contents of the used variables will contain special characters like semicolons.
Make sure that references to variables that may be paths (which in turn
may contain spaces) are quoted, so cmake won't break on the spaces.
This fixes#79.
Some parameters (like "${SYSDIG_DIR}/driver" and "${PROJECT_SOURCE_DIR}/scripts/debian/falco") are passed to CMake commands in your build scripts without enclosing them by quotation marks. I see that these places will result in build difficulties if the contents of the used variables will contain special characters like semicolons.
I would recommend to apply advices from a wiki article.
The text was updated successfully, but these errors were encountered: