diff options
author | 2016-12-09 18:05:04 -0800 | |
---|---|---|
committer | 2016-12-09 18:05:04 -0800 | |
commit | 1384fabf24d96769c754bdadb5f11db1afb3c8aa (patch) | |
tree | 9d0cf4e4a4a24ebab2d36701fc70f2b5a8434ca4 | |
parent | 0b2ccb305258c86d78708f01eee7095effabe61d (diff) | |
download | paludis-1384fabf24d96769c754bdadb5f11db1afb3c8aa.tar.gz paludis-1384fabf24d96769c754bdadb5f11db1afb3c8aa.tar.xz |
build: quote variable for comparison
-rw-r--r-- | CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 09cf4c141..7339756ff 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -262,7 +262,7 @@ if(${CONFIG_FRAMEWORK} STREQUAL "auto") eclectic_path ERROR_QUIET OUTPUT_STRIP_TRAILING_WHITESPACE) - if(${eclectic_path} STREQUAL "") + if("${eclectic_path}" STREQUAL "") set(CONFIG_FRAMEWORK eselect) else() set(CONFIG_FRAMEWORK eclectic) |