diff options
author | Romain Forlot <romain.forlot@iot.bzh> | 2017-05-24 15:10:10 +0200 |
---|---|---|
committer | Romain Forlot <romain.forlot@iot.bzh> | 2018-10-15 18:22:20 +0200 |
commit | 20316f8d9eadc8c16430ed085b5433a67549dbc1 (patch) | |
tree | 1c0d0b7145f431a5349cfedb8d09df5411a12850 | |
parent | aa46897e88d1caaec52db55f1b7911db0f27967d (diff) |
Fix: rpm spec file not configured.
Fix: wrong variable name tested
Change-Id: I03dfb603c1c30b1935356699e45b1f82bc1f63c8
Signed-off-by: Romain Forlot <romain.forlot@iot.bzh>
-rw-r--r-- | default/cmake/common.cmake | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/default/cmake/common.cmake b/default/cmake/common.cmake index 4a8bd23..e1ed51b 100644 --- a/default/cmake/common.cmake +++ b/default/cmake/common.cmake @@ -201,8 +201,8 @@ macro(wgt_package_build) endmacro(wgt_package_build) macro(rpm_package_build) - if(NOT EXISTS ${PROJECT_RPM_DIR}/config.spec.in) - MESSAGE(STATUS "Missing mandatory files: you need config.spec.in in ${PROJECT_RPM_DIR} folder.") + if(NOT EXISTS ${TEMPLATE_RPM_DIR}/config.spec.in) + MESSAGE(STATUS "Missing mandatory files: you need config.spec.in in ${TEMPLATE_RPM_DIR} folder.") else() # extract PROJECT_PKG_DEPS and replace ; by , for RPM spec file get_property(PROJECT_PKG_DEPS GLOBAL PROPERTY PROJECT_PKG_DEPS) |