Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Change to use ENDIF rather than ELSE for CRIU_SUPPORT
The CRIU is enabled by default for the Linux platforms. That means all the Linux builds are CRIU. But it need a command line option to enable it at runtime if someone wants to use CRIU. There was an error in our current code. During the build, the preprocessor eliminate the code in the [ELSE] CRIU_SUPPORT. This would cause error if the --enable-criu-support jvm option is not enabled in an application. The application need the logic within [ELSE] CRIU_SUPPORT. Therefore, we use the [ENDIF] to replace the [ELSE] in the code.
- Loading branch information