From b74541bf5a76ed171b4a31a88d6b8934d67a60a9 Mon Sep 17 00:00:00 2001 From: Brendan Le Foll Date: Wed, 4 Jun 2014 12:05:02 +0100 Subject: [PATCH] CPackDeb.cmake: update to use opkg-buld Signed-off-by: Brendan Le Foll --- cmake/modules/CPackDeb.cmake | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cmake/modules/CPackDeb.cmake b/cmake/modules/CPackDeb.cmake index 7c935d0..77b9d26 100644 --- a/cmake/modules/CPackDeb.cmake +++ b/cmake/modules/CPackDeb.cmake @@ -177,9 +177,9 @@ ENDIF(NOT CPACK_DEBIAN_PACKAGE_PRIORITY ) #endif(NOT CPACK_SECTION) # Package for opkg -FIND_PROGRAM(OPKG_CMD ipkg-build) +FIND_PROGRAM(OPKG_CMD opkg-build) if( ${OPKG_CMD} STREQUAL "OPKG_CMD-NOTFOUND" ) - message("CPack: ipkg-build not found. Skipping packaging") + message("CPack: opkg-build not found. Skipping packaging") else( ${OPKG_CMD} STREQUAL "OPKG_CMD-NOTFOUND" ) SET(CPACK_OPKG_ROOTDIR "${CPACK_TOPLEVEL_DIRECTORY}/${CPACK_PACKAGE_FILE_NAME}") FILE(MAKE_DIRECTORY ${CPACK_OPKG_ROOTDIR}/CONTROL)