Fix: rpm spec file not configured.
authorRomain Forlot <romain.forlot@iot.bzh>
Wed, 24 May 2017 13:10:10 +0000 (15:10 +0200)
committerRomain Forlot <romain.forlot@iot.bzh>
Wed, 24 May 2017 13:10:10 +0000 (15:10 +0200)
Fix: wrong variable name tested

Change-Id: I03dfb603c1c30b1935356699e45b1f82bc1f63c8
Signed-off-by: Romain Forlot <romain.forlot@iot.bzh>
default/cmake/common.cmake

index 4a8bd23..e1ed51b 100644 (file)
@@ -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)