<div dir="ltr">I'm building an app addon that uses Cpack to package up a zip, invoked from a makefile.<br><br>At Cpack exec, it *does* package the zip, but also returns 300+ "Unsupported ioctl" messages.<br><br>They appear to be non-fatal, but are clearly indicating some problem:<br><br>    /usr/bin/cpack --config ./CPackConfig.cmake<br>        CPack: Create package using ZIP<br>        CPack: Install projects<br>        CPack: - Run preinstall target for: pvr.iptvsimple<br>        CPack: - Install project: pvr.iptvsimple<br>        CPack: -   Install component: pvr.iptvsimple-3.3.1<br>        CPack: Create package<br>        Unsupported ioctl: cmd=0xffffffff80046601 (4)<br>        0x80086601      ->      FS_IOC_GETFLAGS (8)<br>        Unsupported ioctl: cmd=0xffffffff80046601 (4)<br>        0x80086601      ->      FS_IOC_GETFLAGS (8)<br>        ... ( 300 + repetitions ) ...<br>        0x80086601      ->      FS_IOC_GETFLAGS (8)<br>        Unsupported ioctl: cmd=0xffffffff80046601 (4)<br>        0x80086601      ->      FS_IOC_GETFLAGS (8)<br>        CPack: - package: /usr/local/src/pvr.iptvsimple/build/addon-pvr.iptvsimple-3.3.1.zip generated.<br><br>cmake here is<br><br>    cmake --version<br>        cmake version 3.7.2<br>        CMake suite maintained and supported by Kitware (<a href="http://kitware.com/cmake">kitware.com/cmake</a>).<br><br>running in a Raspbian9 chroot.<br><br>It's not just this addon; it's occurring on all addon's zipped -- within this parent app, on this box.<br><br>What's causing these messages?  Some missing dependency?<br>Is there a fix/workaround?<br><br>For reference,<br><br>    cat ./CPackConfig.cmake<br>        # This file will be configured to contain variables for CPack. These variables<br>        # should be set in the CMake list file of the project before CPack module is<br>        # included. The list of available CPACK_xxx variables and their associated<br>        # documentation may be obtained using<br>        #  cpack --help-variable-list<br>        #<br>        # Some variables are common to all generators (e.g. CPACK_PACKAGE_NAME)<br>        # and some are specific to a generator<br>        # (e.g. CPACK_NSIS_EXTRA_INSTALL_COMMANDS). The generator specific variables<br>        # usually begin with CPACK_<GENNAME>_xxxx.<br><br><br>        SET(CPACK_ARCHIVE_COMPONENT_INSTALL "ON")<br>        SET(CPACK_BINARY_7Z "")<br>        SET(CPACK_BINARY_BUNDLE "")<br>        SET(CPACK_BINARY_CYGWIN "")<br>        SET(CPACK_BINARY_DEB "")<br>        SET(CPACK_BINARY_DRAGNDROP "")<br>        SET(CPACK_BINARY_IFW "")<br>        SET(CPACK_BINARY_NSIS "")<br>        SET(CPACK_BINARY_OSXX11 "")<br>        SET(CPACK_BINARY_PACKAGEMAKER "")<br>        SET(CPACK_BINARY_PRODUCTBUILD "")<br>        SET(CPACK_BINARY_RPM "")<br>        SET(CPACK_BINARY_STGZ "")<br>        SET(CPACK_BINARY_TBZ2 "")<br>        SET(CPACK_BINARY_TGZ "")<br>        SET(CPACK_BINARY_TXZ "")<br>        SET(CPACK_BINARY_TZ "")<br>        SET(CPACK_BINARY_WIX "")<br>        SET(CPACK_BINARY_ZIP "")<br>        SET(CPACK_BUILD_SOURCE_DIRS "/usr/local/src/pvr.iptvsimple;/usr/local/src/pvr.iptvsimple/build")<br>        SET(CPACK_CMAKE_GENERATOR "Unix Makefiles")<br>        SET(CPACK_COMPONENTS_ALL "pvr.iptvsimple-3.3.1")<br>        SET(CPACK_COMPONENTS_ALL_SET_BY_USER "TRUE")<br>        SET(CPACK_COMPONENTS_IGNORE_GROUPS "1")<br>        SET(CPACK_COMPONENT_UNSPECIFIED_HIDDEN "TRUE")<br>        SET(CPACK_COMPONENT_UNSPECIFIED_REQUIRED "TRUE")<br>        SET(CPACK_GENERATOR "ZIP")<br>        SET(CPACK_INCLUDE_TOPLEVEL_DIRECTORY "OFF")<br>        SET(CPACK_INSTALL_CMAKE_PROJECTS "/usr/local/src/pvr.iptvsimple/build;pvr.iptvsimple;ALL;/")<br>        SET(CPACK_INSTALL_PREFIX "/usr/local")<br>        SET(CPACK_MODULE_PATH "/usr/local/kodi/lib/kodi;/usr/local/kodi/share/kodi/cmake")<br>        SET(CPACK_NSIS_DISPLAY_NAME "pvr.iptvsimple 0.1.1")<br>        SET(CPACK_NSIS_INSTALLER_ICON_CODE "")<br>        SET(CPACK_NSIS_INSTALLER_MUI_ICON_CODE "")<br>        SET(CPACK_NSIS_INSTALL_ROOT "$PROGRAMFILES")<br>        SET(CPACK_NSIS_PACKAGE_NAME "pvr.iptvsimple 0.1.1")<br>        SET(CPACK_OUTPUT_CONFIG_FILE "/usr/local/src/pvr.iptvsimple/build/CPackConfig.cmake")<br>        SET(CPACK_PACKAGE_DEFAULT_LOCATION "/")<br>        SET(CPACK_PACKAGE_DESCRIPTION_FILE "/usr/share/cmake-3.7/Templates/CPack.GenericDescription.txt")<br>        SET(CPACK_PACKAGE_DESCRIPTION_SUMMARY "pvr.iptvsimple built using CMake")<br>        SET(CPACK_PACKAGE_DIRECTORY "/usr/local/src/pvr.iptvsimple/build")<br>        SET(CPACK_PACKAGE_FILE_NAME "addon")<br>        SET(CPACK_PACKAGE_INSTALL_DIRECTORY "pvr.iptvsimple 0.1.1")<br>        SET(CPACK_PACKAGE_INSTALL_REGISTRY_KEY "pvr.iptvsimple 0.1.1")<br>        SET(CPACK_PACKAGE_NAME "pvr.iptvsimple")<br>        SET(CPACK_PACKAGE_RELOCATABLE "true")<br>        SET(CPACK_PACKAGE_VENDOR "Humanity")<br>        SET(CPACK_PACKAGE_VERSION "0.1.1")<br>        SET(CPACK_PACKAGE_VERSION_MAJOR "0")<br>        SET(CPACK_PACKAGE_VERSION_MINOR "1")<br>        SET(CPACK_PACKAGE_VERSION_PATCH "1")<br>        SET(CPACK_RESOURCE_FILE_LICENSE "/usr/share/cmake-3.7/Templates/CPack.GenericLicense.txt")<br>        SET(CPACK_RESOURCE_FILE_README "/usr/share/cmake-3.7/Templates/CPack.GenericDescription.txt")<br>        SET(CPACK_RESOURCE_FILE_WELCOME "/usr/share/cmake-3.7/Templates/CPack.GenericWelcome.txt")<br>        SET(CPACK_SET_DESTDIR "OFF")<br>        SET(CPACK_SOURCE_7Z "")<br>        SET(CPACK_SOURCE_CYGWIN "")<br>        SET(CPACK_SOURCE_GENERATOR "TBZ2;TGZ;TXZ;TZ")<br>        SET(CPACK_SOURCE_OUTPUT_CONFIG_FILE "/usr/local/src/pvr.iptvsimple/build/CPackSourceConfig.cmake")<br>        SET(CPACK_SOURCE_RPM "OFF")<br>        SET(CPACK_SOURCE_TBZ2 "ON")<br>        SET(CPACK_SOURCE_TGZ "ON")<br>        SET(CPACK_SOURCE_TXZ "ON")<br>        SET(CPACK_SOURCE_TZ "ON")<br>        SET(CPACK_SOURCE_ZIP "OFF")<br>        SET(CPACK_SYSTEM_NAME "Linux")<br>        SET(CPACK_TOPLEVEL_TAG "Linux")<br>        SET(CPACK_WIX_SIZEOF_VOID_P "4")<br><br>        if(NOT CPACK_PROPERTIES_FILE)<br>          set(CPACK_PROPERTIES_FILE "/usr/local/src/pvr.iptvsimple/build/CPackProperties.cmake")<br>        endif()<br><br>        if(EXISTS ${CPACK_PROPERTIES_FILE})<br>          include(${CPACK_PROPERTIES_FILE})<br>        endif()<br><br>and the full --debug output of the pack step,<br><br>    /usr/bin/cpack --debug --config ./CPackConfig.cmake<br>        CPack: /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cpack.cxx:175 Enable Debug<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:891 cmCPackZIPGenerator::SetOption(CPACK_GENERATOR, ZIP)<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:1082 Warning, GetOption return NULL for: CPACK_PROJECT_CONFIG_FILE<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:891 cmCPackZIPGenerator::SetOption(CPACK_PACKAGING_INSTALL_PREFIX, /)<br>        CPack: /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:898 Create package using ZIP<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:55 Create temp directory.<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:891 cmCPackZIPGenerator::SetOption(CPACK_OUTPUT_FILE_PREFIX, /usr/local/src/pvr.iptvsimple/build)<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:891 cmCPackZIPGenerator::SetOption(CPACK_TOPLEVEL_DIRECTORY, /usr/local/src/pvr.iptvsimple/build/_CPack_Packages/Linux/ZIP)<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:891 cmCPackZIPGenerator::SetOption(CPACK_TEMPORARY_DIRECTORY, /usr/local/src/pvr.iptvsimple/build/_CPack_Packages/Linux/ZIP/addon)<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:891 cmCPackZIPGenerator::SetOption(CPACK_OUTPUT_FILE_NAME, addon.zip)<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:891 cmCPackZIPGenerator::SetOption(CPACK_OUTPUT_FILE_PATH, /usr/local/src/pvr.iptvsimple/build/addon.zip)<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:891 cmCPackZIPGenerator::SetOption(CPACK_TEMPORARY_PACKAGE_FILE_NAME, /usr/local/src/pvr.iptvsimple/build/_CPack_Packages/Linux/ZIP/addon.zip)<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:891 cmCPackZIPGenerator::SetOption(CPACK_INSTALL_DIRECTORY, /usr/local/)<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:891 cmCPackZIPGenerator::SetOption(CPACK_NATIVE_INSTALL_DIRECTORY, /usr/local/)<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:891 cmCPackZIPGenerator::SetOption(CPACK_TEMPORARY_INSTALL_DIRECTORY, /usr/local/src/pvr.iptvsimple/build/_CPack_Packages/Linux/ZIP/addon)<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:121 Look for: CPACK_PACKAGE_DESCRIPTION_FILE<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:125 Look for: /usr/share/cmake-3.7/Templates/CPack.GenericDescription.txt<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:891 cmCPackZIPGenerator::SetOption(CPACK_PACKAGE_DESCRIPTION, DESCRIPTION<br>        ===========<br><br>        This is an installer created using CPack (<a href="https://cmake.org">https://cmake.org</a>). No additional installation instructions provided.<br><br>        )<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:1082 Warning, GetOption return NULL for: CPACK_PACKAGE_CHECKSUM<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:891 cmCPackZIPGenerator::SetOption(CPACK_REMOVE_TOPLEVEL_DIRECTORY, 1)<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:1082 Warning, GetOption return NULL for: CPACK_COMPONENTS_ALL_IN_ONE_PACKAGE<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:1082 Warning, GetOption return NULL for: CPACK_COMPONENTS_ONE_PACKAGE_PER_GROUP<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:1082 Warning, GetOption return NULL for: CPACK_COMPONENTS_GROUPING<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:927 About to install project <br>        CPack: /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:173 Install projects<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:1135 GetPackagingInstallPrefix: '/'<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:1082 Warning, GetOption return NULL for: CPACK_INSTALL_COMMANDS<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:1082 Warning, GetOption return NULL for: CPACK_INSTALL_SCRIPT<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:1082 Warning, GetOption return NULL for: CPACK_IGNORE_FILES<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:1082 Warning, GetOption return NULL for: CPACK_INSTALLED_DIRECTORIES<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:1082 Warning, GetOption return NULL for: CPACK_MONOLITHIC_INSTALL<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:1082 Warning, GetOption return NULL for: CPACK_ALL_INSTALL_TYPES<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:1082 Warning, GetOption return NULL for: CPACK_COMPONENT_PVR.IPTVSIMPLE-3.3.1_DISPLAY_NAME<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:1082 Warning, GetOption return NULL for: CPACK_COMPONENT_PVR.IPTVSIMPLE-3.3.1_HIDDEN<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:1082 Warning, GetOption return NULL for: CPACK_COMPONENT_PVR.IPTVSIMPLE-3.3.1_REQUIRED<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:1082 Warning, GetOption return NULL for: CPACK_COMPONENT_PVR.IPTVSIMPLE-3.3.1_DISABLED<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:1082 Warning, GetOption return NULL for: CPACK_COMPONENT_PVR.IPTVSIMPLE-3.3.1_DOWNLOADED<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:1082 Warning, GetOption return NULL for: CPACK_DOWNLOAD_ALL<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:1082 Warning, GetOption return NULL for: CPACK_COMPONENT_PVR.IPTVSIMPLE-3.3.1_ARCHIVE_FILE<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:1082 Warning, GetOption return NULL for: CPACK_COMPONENT_PVR.IPTVSIMPLE-3.3.1_GROUP<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:1082 Warning, GetOption return NULL for: CPACK_COMPONENT_PVR.IPTVSIMPLE-3.3.1_DESCRIPTION<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:1082 Warning, GetOption return NULL for: CPACK_COMPONENT_PVR.IPTVSIMPLE-3.3.1_INSTALL_TYPES<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:1082 Warning, GetOption return NULL for: CPACK_COMPONENT_PVR.IPTVSIMPLE-3.3.1_DEPENDS<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:1082 Warning, GetOption return NULL for: CPACK_BUILD_CONFIG<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:584 - Install command: /usr/bin/cmake --build . --target "preinstall"<br>        CPack: /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:586 - Run preinstall target for: pvr.iptvsimple<br>        CPack: /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:610 - Install project: pvr.iptvsimple<br>        CPack: /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:620 -   Install component: pvr.iptvsimple-3.3.1<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:1082 Warning, GetOption return NULL for: CPACK_COMPONENT_INCLUDE_TOPLEVEL_DIRECTORY<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:1135 GetPackagingInstallPrefix: '/'<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:731 - Using non-DESTDIR install... (mf->AddDefinition)<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:734 - Setting CMAKE_INSTALL_PREFIX to '/usr/local/src/pvr.iptvsimple/build/_CPack_Packages/Linux/ZIP/addon/pvr.iptvsimple-3.3.1/'<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:1082 Warning, GetOption return NULL for: CPACK_STRIP_FILES<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:1082 Warning, GetOption return NULL for: CPACK_WARN_ON_ABSOLUTE_INSTALL_DESTINATION<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:1082 Warning, GetOption return NULL for: CPACK_ERROR_ON_ABSOLUTE_INSTALL_DESTINATION<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:818 Adding file <pvr.iptvsimple> to component <pvr.iptvsimple-3.3.1><br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:818 Adding file <pvr.iptvsimple/addon.xml> to component <pvr.iptvsimple-3.3.1><br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:818 Adding file <pvr.iptvsimple/changelog.txt> to component <pvr.iptvsimple-3.3.1><br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:818 Adding file <pvr.iptvsimple/icon.png> to component <pvr.iptvsimple-3.3.1><br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:818 Adding file <pvr.iptvsimple/<a href="http://pvr.iptvsimple.so">pvr.iptvsimple.so</a>> to component <pvr.iptvsimple-3.3.1><br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:818 Adding file <pvr.iptvsimple/pvr.iptvsimple.so.18.0> to component <pvr.iptvsimple-3.3.1><br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:818 Adding file <pvr.iptvsimple/pvr.iptvsimple.so.3.3.1> to component <pvr.iptvsimple-3.3.1><br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:818 Adding file <pvr.iptvsimple/resources> to component <pvr.iptvsimple-3.3.1><br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:818 Adding file <pvr.iptvsimple/resources/language> to component <pvr.iptvsimple-3.3.1><br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:818 Adding file <pvr.iptvsimple/resources/language/resource.language.af_za> to component <pvr.iptvsimple-3.3.1><br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:818 Adding file <pvr.iptvsimple/resources/language/resource.language.af_za/strings.po> to component <pvr.iptvsimple-3.3.1><br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:818 Adding file <pvr.iptvsimple/resources/language/resource.language.am_et> to component <pvr.iptvsimple-3.3.1><br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:818 Adding file <pvr.iptvsimple/resources/language/resource.language.am_et/strings.po> to component <pvr.iptvsimple-3.3.1><br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:818 Adding file <pvr.iptvsimple/resources/language/resource.language.ar_sa> to component <pvr.iptvsimple-3.3.1><br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:818 Adding file <pvr.iptvsimple/resources/language/resource.language.ar_sa/strings.po> to component <pvr.iptvsimple-3.3.1><br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:818 Adding file <pvr.iptvsimple/resources/language/resource.language.az_az> to component <pvr.iptvsimple-3.3.1><br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:818 Adding file <pvr.iptvsimple/resources/language/resource.language.az_az/strings.po> to component <pvr.iptvsimple-3.3.1><br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:818 Adding file <pvr.iptvsimple/resources/language/resource.language.be_by> to component <pvr.iptvsimple-3.3.1><br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:818 Adding file <pvr.iptvsimple/resources/language/resource.language.be_by/strings.po> to component <pvr.iptvsimple-3.3.1><br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:818 Adding file <pvr.iptvsimple/resources/language/resource.language.bg_bg> to component <pvr.iptvsimple-3.3.1><br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:818 Adding file <pvr.iptvsimple/resources/language/resource.language.bg_bg/strings.po> to component <pvr.iptvsimple-3.3.1><br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:818 Adding file <pvr.iptvsimple/resources/language/resource.language.bs_ba> to component <pvr.iptvsimple-3.3.1><br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:818 Adding file <pvr.iptvsimple/resources/language/resource.language.bs_ba/strings.po> to component <pvr.iptvsimple-3.3.1><br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:818 Adding file <pvr.iptvsimple/resources/language/resource.language.ca_es> to component <pvr.iptvsimple-3.3.1><br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:818 Adding file <pvr.iptvsimple/resources/language/resource.language.ca_es/strings.po> to component <pvr.iptvsimple-3.3.1><br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:818 Adding file <pvr.iptvsimple/resources/language/resource.language.cs_cz> to component <pvr.iptvsimple-3.3.1><br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:818 Adding file <pvr.iptvsimple/resources/language/resource.language.cs_cz/strings.po> to component <pvr.iptvsimple-3.3.1><br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:818 Adding file <pvr.iptvsimple/resources/language/resource.language.cy_gb> to component <pvr.iptvsimple-3.3.1><br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:818 Adding file <pvr.iptvsimple/resources/language/resource.language.cy_gb/strings.po> to component <pvr.iptvsimple-3.3.1><br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:818 Adding file <pvr.iptvsimple/resources/language/resource.language.da_dk> to component <pvr.iptvsimple-3.3.1><br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:818 Adding file <pvr.iptvsimple/resources/language/resource.language.da_dk/strings.po> to component <pvr.iptvsimple-3.3.1><br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:818 Adding file <pvr.iptvsimple/resources/language/resource.language.de_de> to component <pvr.iptvsimple-3.3.1><br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:818 Adding file <pvr.iptvsimple/resources/language/resource.language.de_de/strings.po> to component <pvr.iptvsimple-3.3.1><br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:818 Adding file <pvr.iptvsimple/resources/language/resource.language.el_gr> to component <pvr.iptvsimple-3.3.1><br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:818 Adding file <pvr.iptvsimple/resources/language/resource.language.el_gr/strings.po> to component <pvr.iptvsimple-3.3.1><br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:818 Adding file <pvr.iptvsimple/resources/language/resource.language.en_au> to component <pvr.iptvsimple-3.3.1><br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:818 Adding file <pvr.iptvsimple/resources/language/resource.language.en_au/strings.po> to component <pvr.iptvsimple-3.3.1><br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:818 Adding file <pvr.iptvsimple/resources/language/resource.language.en_gb> to component <pvr.iptvsimple-3.3.1><br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:818 Adding file <pvr.iptvsimple/resources/language/resource.language.en_gb/strings.po> to component <pvr.iptvsimple-3.3.1><br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:818 Adding file <pvr.iptvsimple/resources/language/resource.language.en_nz> to component <pvr.iptvsimple-3.3.1><br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:818 Adding file <pvr.iptvsimple/resources/language/resource.language.en_nz/strings.po> to component <pvr.iptvsimple-3.3.1><br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:818 Adding file <pvr.iptvsimple/resources/language/resource.language.en_us> to component <pvr.iptvsimple-3.3.1><br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:818 Adding file <pvr.iptvsimple/resources/language/resource.language.en_us/strings.po> to component <pvr.iptvsimple-3.3.1><br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:818 Adding file <pvr.iptvsimple/resources/language/resource.language.eo> to component <pvr.iptvsimple-3.3.1><br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:818 Adding file <pvr.iptvsimple/resources/language/resource.language.eo/strings.po> to component <pvr.iptvsimple-3.3.1><br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:818 Adding file <pvr.iptvsimple/resources/language/resource.language.es_ar> to component <pvr.iptvsimple-3.3.1><br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:818 Adding file <pvr.iptvsimple/resources/language/resource.language.es_ar/strings.po> to component <pvr.iptvsimple-3.3.1><br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:818 Adding file <pvr.iptvsimple/resources/language/resource.language.es_es> to component <pvr.iptvsimple-3.3.1><br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:818 Adding file <pvr.iptvsimple/resources/language/resource.language.es_es/strings.po> to component <pvr.iptvsimple-3.3.1><br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:818 Adding file <pvr.iptvsimple/resources/language/resource.language.es_mx> to component <pvr.iptvsimple-3.3.1><br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:818 Adding file <pvr.iptvsimple/resources/language/resource.language.es_mx/strings.po> to component <pvr.iptvsimple-3.3.1><br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:818 Adding file <pvr.iptvsimple/resources/language/resource.language.et_ee> to component <pvr.iptvsimple-3.3.1><br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:818 Adding file <pvr.iptvsimple/resources/language/resource.language.et_ee/strings.po> to component <pvr.iptvsimple-3.3.1><br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:818 Adding file <pvr.iptvsimple/resources/language/resource.language.eu_es> to component <pvr.iptvsimple-3.3.1><br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:818 Adding file <pvr.iptvsimple/resources/language/resource.language.eu_es/strings.po> to component <pvr.iptvsimple-3.3.1><br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:818 Adding file <pvr.iptvsimple/resources/language/resource.language.fa_af> to component <pvr.iptvsimple-3.3.1><br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:818 Adding file <pvr.iptvsimple/resources/language/resource.language.fa_af/strings.po> to component <pvr.iptvsimple-3.3.1><br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:818 Adding file <pvr.iptvsimple/resources/language/resource.language.fa_ir> to component <pvr.iptvsimple-3.3.1><br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:818 Adding file <pvr.iptvsimple/resources/language/resource.language.fa_ir/strings.po> to component <pvr.iptvsimple-3.3.1><br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:818 Adding file <pvr.iptvsimple/resources/language/resource.language.fi_fi> to component <pvr.iptvsimple-3.3.1><br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:818 Adding file <pvr.iptvsimple/resources/language/resource.language.fi_fi/strings.po> to component <pvr.iptvsimple-3.3.1><br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:818 Adding file <pvr.iptvsimple/resources/language/resource.language.fo_fo> to component <pvr.iptvsimple-3.3.1><br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:818 Adding file <pvr.iptvsimple/resources/language/resource.language.fo_fo/strings.po> to component <pvr.iptvsimple-3.3.1><br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:818 Adding file <pvr.iptvsimple/resources/language/resource.language.fr_ca> to component <pvr.iptvsimple-3.3.1><br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:818 Adding file <pvr.iptvsimple/resources/language/resource.language.fr_ca/strings.po> to component <pvr.iptvsimple-3.3.1><br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:818 Adding file <pvr.iptvsimple/resources/language/resource.language.fr_fr> to component <pvr.iptvsimple-3.3.1><br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:818 Adding file <pvr.iptvsimple/resources/language/resource.language.fr_fr/strings.po> to component <pvr.iptvsimple-3.3.1><br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:818 Adding file <pvr.iptvsimple/resources/language/resource.language.gl_es> to component <pvr.iptvsimple-3.3.1><br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:818 Adding file <pvr.iptvsimple/resources/language/resource.language.gl_es/strings.po> to component <pvr.iptvsimple-3.3.1><br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:818 Adding file <pvr.iptvsimple/resources/language/resource.language.he_il> to component <pvr.iptvsimple-3.3.1><br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:818 Adding file <pvr.iptvsimple/resources/language/resource.language.he_il/strings.po> to component <pvr.iptvsimple-3.3.1><br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:818 Adding file <pvr.iptvsimple/resources/language/resource.language.hi_in> to component <pvr.iptvsimple-3.3.1><br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:818 Adding file <pvr.iptvsimple/resources/language/resource.language.hi_in/strings.po> to component <pvr.iptvsimple-3.3.1><br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:818 Adding file <pvr.iptvsimple/resources/language/resource.language.hr_hr> to component <pvr.iptvsimple-3.3.1><br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:818 Adding file <pvr.iptvsimple/resources/language/resource.language.hr_hr/strings.po> to component <pvr.iptvsimple-3.3.1><br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:818 Adding file <pvr.iptvsimple/resources/language/resource.language.hu_hu> to component <pvr.iptvsimple-3.3.1><br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:818 Adding file <pvr.iptvsimple/resources/language/resource.language.hu_hu/strings.po> to component <pvr.iptvsimple-3.3.1><br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:818 Adding file <pvr.iptvsimple/resources/language/resource.language.hy_am> to component <pvr.iptvsimple-3.3.1><br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:818 Adding file <pvr.iptvsimple/resources/language/resource.language.hy_am/strings.po> to component <pvr.iptvsimple-3.3.1><br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:818 Adding file <pvr.iptvsimple/resources/language/resource.language.id_id> to component <pvr.iptvsimple-3.3.1><br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:818 Adding file <pvr.iptvsimple/resources/language/resource.language.id_id/strings.po> to component <pvr.iptvsimple-3.3.1><br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:818 Adding file <pvr.iptvsimple/resources/language/resource.language.is_is> to component <pvr.iptvsimple-3.3.1><br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:818 Adding file <pvr.iptvsimple/resources/language/resource.language.is_is/strings.po> to component <pvr.iptvsimple-3.3.1><br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:818 Adding file <pvr.iptvsimple/resources/language/resource.language.it_it> to component <pvr.iptvsimple-3.3.1><br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:818 Adding file <pvr.iptvsimple/resources/language/resource.language.it_it/strings.po> to component <pvr.iptvsimple-3.3.1><br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:818 Adding file <pvr.iptvsimple/resources/language/resource.language.ja_jp> to component <pvr.iptvsimple-3.3.1><br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:818 Adding file <pvr.iptvsimple/resources/language/resource.language.ja_jp/strings.po> to component <pvr.iptvsimple-3.3.1><br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:818 Adding file <pvr.iptvsimple/resources/language/resource.language.ko_kr> to component <pvr.iptvsimple-3.3.1><br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:818 Adding file <pvr.iptvsimple/resources/language/resource.language.ko_kr/strings.po> to component <pvr.iptvsimple-3.3.1><br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:818 Adding file <pvr.iptvsimple/resources/language/resource.language.lt_lt> to component <pvr.iptvsimple-3.3.1><br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:818 Adding file <pvr.iptvsimple/resources/language/resource.language.lt_lt/strings.po> to component <pvr.iptvsimple-3.3.1><br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:818 Adding file <pvr.iptvsimple/resources/language/resource.language.lv_lv> to component <pvr.iptvsimple-3.3.1><br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:818 Adding file <pvr.iptvsimple/resources/language/resource.language.lv_lv/strings.po> to component <pvr.iptvsimple-3.3.1><br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:818 Adding file <pvr.iptvsimple/resources/language/resource.language.mi> to component <pvr.iptvsimple-3.3.1><br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:818 Adding file <pvr.iptvsimple/resources/language/resource.language.mi/strings.po> to component <pvr.iptvsimple-3.3.1><br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:818 Adding file <pvr.iptvsimple/resources/language/resource.language.mk_mk> to component <pvr.iptvsimple-3.3.1><br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:818 Adding file <pvr.iptvsimple/resources/language/resource.language.mk_mk/strings.po> to component <pvr.iptvsimple-3.3.1><br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:818 Adding file <pvr.iptvsimple/resources/language/resource.language.ml_in> to component <pvr.iptvsimple-3.3.1><br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:818 Adding file <pvr.iptvsimple/resources/language/resource.language.ml_in/strings.po> to component <pvr.iptvsimple-3.3.1><br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:818 Adding file <pvr.iptvsimple/resources/language/resource.language.mn_mn> to component <pvr.iptvsimple-3.3.1><br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:818 Adding file <pvr.iptvsimple/resources/language/resource.language.mn_mn/strings.po> to component <pvr.iptvsimple-3.3.1><br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:818 Adding file <pvr.iptvsimple/resources/language/resource.language.ms_my> to component <pvr.iptvsimple-3.3.1><br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:818 Adding file <pvr.iptvsimple/resources/language/resource.language.ms_my/strings.po> to component <pvr.iptvsimple-3.3.1><br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:818 Adding file <pvr.iptvsimple/resources/language/resource.language.mt_mt> to component <pvr.iptvsimple-3.3.1><br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:818 Adding file <pvr.iptvsimple/resources/language/resource.language.mt_mt/strings.po> to component <pvr.iptvsimple-3.3.1><br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:818 Adding file <pvr.iptvsimple/resources/language/resource.language.my_mm> to component <pvr.iptvsimple-3.3.1><br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:818 Adding file <pvr.iptvsimple/resources/language/resource.language.my_mm/strings.po> to component <pvr.iptvsimple-3.3.1><br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:818 Adding file <pvr.iptvsimple/resources/language/resource.language.nb_no> to component <pvr.iptvsimple-3.3.1><br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:818 Adding file <pvr.iptvsimple/resources/language/resource.language.nb_no/strings.po> to component <pvr.iptvsimple-3.3.1><br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:818 Adding file <pvr.iptvsimple/resources/language/resource.language.nl_nl> to component <pvr.iptvsimple-3.3.1><br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:818 Adding file <pvr.iptvsimple/resources/language/resource.language.nl_nl/strings.po> to component <pvr.iptvsimple-3.3.1><br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:818 Adding file <pvr.iptvsimple/resources/language/resource.language.pl_pl> to component <pvr.iptvsimple-3.3.1><br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:818 Adding file <pvr.iptvsimple/resources/language/resource.language.pl_pl/strings.po> to component <pvr.iptvsimple-3.3.1><br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:818 Adding file <pvr.iptvsimple/resources/language/resource.language.pt_br> to component <pvr.iptvsimple-3.3.1><br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:818 Adding file <pvr.iptvsimple/resources/language/resource.language.pt_br/strings.po> to component <pvr.iptvsimple-3.3.1><br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:818 Adding file <pvr.iptvsimple/resources/language/resource.language.pt_pt> to component <pvr.iptvsimple-3.3.1><br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:818 Adding file <pvr.iptvsimple/resources/language/resource.language.pt_pt/strings.po> to component <pvr.iptvsimple-3.3.1><br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:818 Adding file <pvr.iptvsimple/resources/language/resource.language.ro_ro> to component <pvr.iptvsimple-3.3.1><br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:818 Adding file <pvr.iptvsimple/resources/language/resource.language.ro_ro/strings.po> to component <pvr.iptvsimple-3.3.1><br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:818 Adding file <pvr.iptvsimple/resources/language/resource.language.ru_ru> to component <pvr.iptvsimple-3.3.1><br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:818 Adding file <pvr.iptvsimple/resources/language/resource.language.ru_ru/strings.po> to component <pvr.iptvsimple-3.3.1><br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:818 Adding file <pvr.iptvsimple/resources/language/resource.language.si_lk> to component <pvr.iptvsimple-3.3.1><br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:818 Adding file <pvr.iptvsimple/resources/language/resource.language.si_lk/strings.po> to component <pvr.iptvsimple-3.3.1><br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:818 Adding file <pvr.iptvsimple/resources/language/resource.language.sk_sk> to component <pvr.iptvsimple-3.3.1><br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:818 Adding file <pvr.iptvsimple/resources/language/resource.language.sk_sk/strings.po> to component <pvr.iptvsimple-3.3.1><br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:818 Adding file <pvr.iptvsimple/resources/language/resource.language.sl_si> to component <pvr.iptvsimple-3.3.1><br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:818 Adding file <pvr.iptvsimple/resources/language/resource.language.sl_si/strings.po> to component <pvr.iptvsimple-3.3.1><br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:818 Adding file <pvr.iptvsimple/resources/language/resource.language.sq_al> to component <pvr.iptvsimple-3.3.1><br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:818 Adding file <pvr.iptvsimple/resources/language/resource.language.sq_al/strings.po> to component <pvr.iptvsimple-3.3.1><br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:818 Adding file <pvr.iptvsimple/resources/language/resource.language.sr_rs> to component <pvr.iptvsimple-3.3.1><br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:818 Adding file <pvr.iptvsimple/resources/language/resource.language.sr_rs/strings.po> to component <pvr.iptvsimple-3.3.1><br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:818 Adding file <pvr.iptvsimple/resources/language/resource.language.sr_rs@latin> to component <pvr.iptvsimple-3.3.1><br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:818 Adding file <pvr.iptvsimple/resources/language/resource.language.sr_rs@latin/strings.po> to component <pvr.iptvsimple-3.3.1><br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:818 Adding file <pvr.iptvsimple/resources/language/resource.language.sv_se> to component <pvr.iptvsimple-3.3.1><br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:818 Adding file <pvr.iptvsimple/resources/language/resource.language.sv_se/strings.po> to component <pvr.iptvsimple-3.3.1><br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:818 Adding file <pvr.iptvsimple/resources/language/resource.language.szl> to component <pvr.iptvsimple-3.3.1><br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:818 Adding file <pvr.iptvsimple/resources/language/resource.language.szl/strings.po> to component <pvr.iptvsimple-3.3.1><br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:818 Adding file <pvr.iptvsimple/resources/language/resource.language.ta_in> to component <pvr.iptvsimple-3.3.1><br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:818 Adding file <pvr.iptvsimple/resources/language/resource.language.ta_in/strings.po> to component <pvr.iptvsimple-3.3.1><br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:818 Adding file <pvr.iptvsimple/resources/language/resource.language.te_in> to component <pvr.iptvsimple-3.3.1><br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:818 Adding file <pvr.iptvsimple/resources/language/resource.language.te_in/strings.po> to component <pvr.iptvsimple-3.3.1><br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:818 Adding file <pvr.iptvsimple/resources/language/resource.language.tg_tj> to component <pvr.iptvsimple-3.3.1><br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:818 Adding file <pvr.iptvsimple/resources/language/resource.language.tg_tj/strings.po> to component <pvr.iptvsimple-3.3.1><br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:818 Adding file <pvr.iptvsimple/resources/language/resource.language.th_th> to component <pvr.iptvsimple-3.3.1><br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:818 Adding file <pvr.iptvsimple/resources/language/resource.language.th_th/strings.po> to component <pvr.iptvsimple-3.3.1><br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:818 Adding file <pvr.iptvsimple/resources/language/resource.language.tr_tr> to component <pvr.iptvsimple-3.3.1><br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:818 Adding file <pvr.iptvsimple/resources/language/resource.language.tr_tr/strings.po> to component <pvr.iptvsimple-3.3.1><br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:818 Adding file <pvr.iptvsimple/resources/language/resource.language.uk_ua> to component <pvr.iptvsimple-3.3.1><br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:818 Adding file <pvr.iptvsimple/resources/language/resource.language.uk_ua/strings.po> to component <pvr.iptvsimple-3.3.1><br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:818 Adding file <pvr.iptvsimple/resources/language/resource.language.uz_uz> to component <pvr.iptvsimple-3.3.1><br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:818 Adding file <pvr.iptvsimple/resources/language/resource.language.uz_uz/strings.po> to component <pvr.iptvsimple-3.3.1><br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:818 Adding file <pvr.iptvsimple/resources/language/resource.language.vi_vn> to component <pvr.iptvsimple-3.3.1><br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:818 Adding file <pvr.iptvsimple/resources/language/resource.language.vi_vn/strings.po> to component <pvr.iptvsimple-3.3.1><br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:818 Adding file <pvr.iptvsimple/resources/language/resource.language.zh_cn> to component <pvr.iptvsimple-3.3.1><br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:818 Adding file <pvr.iptvsimple/resources/language/resource.language.zh_cn/strings.po> to component <pvr.iptvsimple-3.3.1><br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:818 Adding file <pvr.iptvsimple/resources/language/resource.language.zh_tw> to component <pvr.iptvsimple-3.3.1><br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:818 Adding file <pvr.iptvsimple/resources/language/resource.language.zh_tw/strings.po> to component <pvr.iptvsimple-3.3.1><br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:818 Adding file <pvr.iptvsimple/resources/settings.xml> to component <pvr.iptvsimple-3.3.1><br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:891 cmCPackZIPGenerator::SetOption(CPACK_ABSOLUTE_DESTINATION_FILES, )<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:932 Done install project <br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:938 Find files<br>        CPack: /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:951 Create package<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:210 Toplevel: /usr/local/src/pvr.iptvsimple/build/_CPack_Packages/Linux/ZIP/addon<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:1082 Warning, GetOption return NULL for: CPACK_MONOLITHIC_INSTALL<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:1082 Warning, GetOption return NULL for: CPACK_ZIP_USE_DISPLAY_NAME_IN_FILENAME<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:1082 Warning, GetOption return NULL for: CPACK_COMPONENT_INCLUDE_TOPLEVEL_DIRECTORY<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59 Adding file: pvr.iptvsimple<br>        Unsupported ioctl: cmd=0xffffffff80046601 (4)<br>        0x80086601      ->      FS_IOC_GETFLAGS (8)<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59 Adding file: pvr.iptvsimple/addon.xml<br>        Unsupported ioctl: cmd=0xffffffff80046601 (4)<br>        0x80086601      ->      FS_IOC_GETFLAGS (8)<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59 Adding file: pvr.iptvsimple/changelog.txt<br>        Unsupported ioctl: cmd=0xffffffff80046601 (4)<br>        0x80086601      ->      FS_IOC_GETFLAGS (8)<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59 Adding file: pvr.iptvsimple/icon.png<br>        Unsupported ioctl: cmd=0xffffffff80046601 (4)<br>        0x80086601      ->      FS_IOC_GETFLAGS (8)<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59 Adding file: pvr.iptvsimple/<a href="http://pvr.iptvsimple.so">pvr.iptvsimple.so</a><br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59 Adding file: pvr.iptvsimple/pvr.iptvsimple.so.18.0<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59 Adding file: pvr.iptvsimple/pvr.iptvsimple.so.3.3.1<br>        Unsupported ioctl: cmd=0xffffffff80046601 (4)<br>        0x80086601      ->      FS_IOC_GETFLAGS (8)<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59 Adding file: pvr.iptvsimple/resources<br>        Unsupported ioctl: cmd=0xffffffff80046601 (4)<br>        0x80086601      ->      FS_IOC_GETFLAGS (8)<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59 Adding file: pvr.iptvsimple/resources/language<br>        Unsupported ioctl: cmd=0xffffffff80046601 (4)<br>        0x80086601      ->      FS_IOC_GETFLAGS (8)<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59 Adding file: pvr.iptvsimple/resources/language/resource.language.af_za<br>        Unsupported ioctl: cmd=0xffffffff80046601 (4)<br>        0x80086601      ->      FS_IOC_GETFLAGS (8)<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59 Adding file: pvr.iptvsimple/resources/language/resource.language.af_za/strings.po<br>        Unsupported ioctl: cmd=0xffffffff80046601 (4)<br>        0x80086601      ->      FS_IOC_GETFLAGS (8)<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59 Adding file: pvr.iptvsimple/resources/language/resource.language.am_et<br>        Unsupported ioctl: cmd=0xffffffff80046601 (4)<br>        0x80086601      ->      FS_IOC_GETFLAGS (8)<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59 Adding file: pvr.iptvsimple/resources/language/resource.language.am_et/strings.po<br>        Unsupported ioctl: cmd=0xffffffff80046601 (4)<br>        0x80086601      ->      FS_IOC_GETFLAGS (8)<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59 Adding file: pvr.iptvsimple/resources/language/resource.language.ar_sa<br>        Unsupported ioctl: cmd=0xffffffff80046601 (4)<br>        0x80086601      ->      FS_IOC_GETFLAGS (8)<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59 Adding file: pvr.iptvsimple/resources/language/resource.language.ar_sa/strings.po<br>        Unsupported ioctl: cmd=0xffffffff80046601 (4)<br>        0x80086601      ->      FS_IOC_GETFLAGS (8)<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59 Adding file: pvr.iptvsimple/resources/language/resource.language.az_az<br>        Unsupported ioctl: cmd=0xffffffff80046601 (4)<br>        0x80086601      ->      FS_IOC_GETFLAGS (8)<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59 Adding file: pvr.iptvsimple/resources/language/resource.language.az_az/strings.po<br>        Unsupported ioctl: cmd=0xffffffff80046601 (4)<br>        0x80086601      ->      FS_IOC_GETFLAGS (8)<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59 Adding file: pvr.iptvsimple/resources/language/resource.language.be_by<br>        Unsupported ioctl: cmd=0xffffffff80046601 (4)<br>        0x80086601      ->      FS_IOC_GETFLAGS (8)<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59 Adding file: pvr.iptvsimple/resources/language/resource.language.be_by/strings.po<br>        Unsupported ioctl: cmd=0xffffffff80046601 (4)<br>        0x80086601      ->      FS_IOC_GETFLAGS (8)<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59 Adding file: pvr.iptvsimple/resources/language/resource.language.bg_bg<br>        Unsupported ioctl: cmd=0xffffffff80046601 (4)<br>        0x80086601      ->      FS_IOC_GETFLAGS (8)<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59 Adding file: pvr.iptvsimple/resources/language/resource.language.bg_bg/strings.po<br>        Unsupported ioctl: cmd=0xffffffff80046601 (4)<br>        0x80086601      ->      FS_IOC_GETFLAGS (8)<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59 Adding file: pvr.iptvsimple/resources/language/resource.language.bs_ba<br>        Unsupported ioctl: cmd=0xffffffff80046601 (4)<br>        0x80086601      ->      FS_IOC_GETFLAGS (8)<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59 Adding file: pvr.iptvsimple/resources/language/resource.language.bs_ba/strings.po<br>        Unsupported ioctl: cmd=0xffffffff80046601 (4)<br>        0x80086601      ->      FS_IOC_GETFLAGS (8)<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59 Adding file: pvr.iptvsimple/resources/language/resource.language.ca_es<br>        Unsupported ioctl: cmd=0xffffffff80046601 (4)<br>        0x80086601      ->      FS_IOC_GETFLAGS (8)<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59 Adding file: pvr.iptvsimple/resources/language/resource.language.ca_es/strings.po<br>        Unsupported ioctl: cmd=0xffffffff80046601 (4)<br>        0x80086601      ->      FS_IOC_GETFLAGS (8)<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59 Adding file: pvr.iptvsimple/resources/language/resource.language.cs_cz<br>        Unsupported ioctl: cmd=0xffffffff80046601 (4)<br>        0x80086601      ->      FS_IOC_GETFLAGS (8)<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59 Adding file: pvr.iptvsimple/resources/language/resource.language.cs_cz/strings.po<br>        Unsupported ioctl: cmd=0xffffffff80046601 (4)<br>        0x80086601      ->      FS_IOC_GETFLAGS (8)<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59 Adding file: pvr.iptvsimple/resources/language/resource.language.cy_gb<br>        Unsupported ioctl: cmd=0xffffffff80046601 (4)<br>        0x80086601      ->      FS_IOC_GETFLAGS (8)<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59 Adding file: pvr.iptvsimple/resources/language/resource.language.cy_gb/strings.po<br>        Unsupported ioctl: cmd=0xffffffff80046601 (4)<br>        0x80086601      ->      FS_IOC_GETFLAGS (8)<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59 Adding file: pvr.iptvsimple/resources/language/resource.language.da_dk<br>        Unsupported ioctl: cmd=0xffffffff80046601 (4)<br>        0x80086601      ->      FS_IOC_GETFLAGS (8)<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59 Adding file: pvr.iptvsimple/resources/language/resource.language.da_dk/strings.po<br>        Unsupported ioctl: cmd=0xffffffff80046601 (4)<br>        0x80086601      ->      FS_IOC_GETFLAGS (8)<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59 Adding file: pvr.iptvsimple/resources/language/resource.language.de_de<br>        Unsupported ioctl: cmd=0xffffffff80046601 (4)<br>        0x80086601      ->      FS_IOC_GETFLAGS (8)<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59 Adding file: pvr.iptvsimple/resources/language/resource.language.de_de/strings.po<br>        Unsupported ioctl: cmd=0xffffffff80046601 (4)<br>        0x80086601      ->      FS_IOC_GETFLAGS (8)<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59 Adding file: pvr.iptvsimple/resources/language/resource.language.el_gr<br>        Unsupported ioctl: cmd=0xffffffff80046601 (4)<br>        0x80086601      ->      FS_IOC_GETFLAGS (8)<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59 Adding file: pvr.iptvsimple/resources/language/resource.language.el_gr/strings.po<br>        Unsupported ioctl: cmd=0xffffffff80046601 (4)<br>        0x80086601      ->      FS_IOC_GETFLAGS (8)<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59 Adding file: pvr.iptvsimple/resources/language/resource.language.en_au<br>        Unsupported ioctl: cmd=0xffffffff80046601 (4)<br>        0x80086601      ->      FS_IOC_GETFLAGS (8)<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59 Adding file: pvr.iptvsimple/resources/language/resource.language.en_au/strings.po<br>        Unsupported ioctl: cmd=0xffffffff80046601 (4)<br>        0x80086601      ->      FS_IOC_GETFLAGS (8)<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59 Adding file: pvr.iptvsimple/resources/language/resource.language.en_gb<br>        Unsupported ioctl: cmd=0xffffffff80046601 (4)<br>        0x80086601      ->      FS_IOC_GETFLAGS (8)<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59 Adding file: pvr.iptvsimple/resources/language/resource.language.en_gb/strings.po<br>        Unsupported ioctl: cmd=0xffffffff80046601 (4)<br>        0x80086601      ->      FS_IOC_GETFLAGS (8)<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59 Adding file: pvr.iptvsimple/resources/language/resource.language.en_nz<br>        Unsupported ioctl: cmd=0xffffffff80046601 (4)<br>        0x80086601      ->      FS_IOC_GETFLAGS (8)<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59 Adding file: pvr.iptvsimple/resources/language/resource.language.en_nz/strings.po<br>        Unsupported ioctl: cmd=0xffffffff80046601 (4)<br>        0x80086601      ->      FS_IOC_GETFLAGS (8)<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59 Adding file: pvr.iptvsimple/resources/language/resource.language.en_us<br>        Unsupported ioctl: cmd=0xffffffff80046601 (4)<br>        0x80086601      ->      FS_IOC_GETFLAGS (8)<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59 Adding file: pvr.iptvsimple/resources/language/resource.language.en_us/strings.po<br>        Unsupported ioctl: cmd=0xffffffff80046601 (4)<br>        0x80086601      ->      FS_IOC_GETFLAGS (8)<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59 Adding file: pvr.iptvsimple/resources/language/resource.language.eo<br>        Unsupported ioctl: cmd=0xffffffff80046601 (4)<br>        0x80086601      ->      FS_IOC_GETFLAGS (8)<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59 Adding file: pvr.iptvsimple/resources/language/resource.language.eo/strings.po<br>        Unsupported ioctl: cmd=0xffffffff80046601 (4)<br>        0x80086601      ->      FS_IOC_GETFLAGS (8)<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59 Adding file: pvr.iptvsimple/resources/language/resource.language.es_ar<br>        Unsupported ioctl: cmd=0xffffffff80046601 (4)<br>        0x80086601      ->      FS_IOC_GETFLAGS (8)<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59 Adding file: pvr.iptvsimple/resources/language/resource.language.es_ar/strings.po<br>        Unsupported ioctl: cmd=0xffffffff80046601 (4)<br>        0x80086601      ->      FS_IOC_GETFLAGS (8)<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59 Adding file: pvr.iptvsimple/resources/language/resource.language.es_es<br>        Unsupported ioctl: cmd=0xffffffff80046601 (4)<br>        0x80086601      ->      FS_IOC_GETFLAGS (8)<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59 Adding file: pvr.iptvsimple/resources/language/resource.language.es_es/strings.po<br>        Unsupported ioctl: cmd=0xffffffff80046601 (4)<br>        0x80086601      ->      FS_IOC_GETFLAGS (8)<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59 Adding file: pvr.iptvsimple/resources/language/resource.language.es_mx<br>        Unsupported ioctl: cmd=0xffffffff80046601 (4)<br>        0x80086601      ->      FS_IOC_GETFLAGS (8)<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59 Adding file: pvr.iptvsimple/resources/language/resource.language.es_mx/strings.po<br>        Unsupported ioctl: cmd=0xffffffff80046601 (4)<br>        0x80086601      ->      FS_IOC_GETFLAGS (8)<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59 Adding file: pvr.iptvsimple/resources/language/resource.language.et_ee<br>        Unsupported ioctl: cmd=0xffffffff80046601 (4)<br>        0x80086601      ->      FS_IOC_GETFLAGS (8)<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59 Adding file: pvr.iptvsimple/resources/language/resource.language.et_ee/strings.po<br>        Unsupported ioctl: cmd=0xffffffff80046601 (4)<br>        0x80086601      ->      FS_IOC_GETFLAGS (8)<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59 Adding file: pvr.iptvsimple/resources/language/resource.language.eu_es<br>        Unsupported ioctl: cmd=0xffffffff80046601 (4)<br>        0x80086601      ->      FS_IOC_GETFLAGS (8)<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59 Adding file: pvr.iptvsimple/resources/language/resource.language.eu_es/strings.po<br>        Unsupported ioctl: cmd=0xffffffff80046601 (4)<br>        0x80086601      ->      FS_IOC_GETFLAGS (8)<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59 Adding file: pvr.iptvsimple/resources/language/resource.language.fa_af<br>        Unsupported ioctl: cmd=0xffffffff80046601 (4)<br>        0x80086601      ->      FS_IOC_GETFLAGS (8)<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59 Adding file: pvr.iptvsimple/resources/language/resource.language.fa_af/strings.po<br>        Unsupported ioctl: cmd=0xffffffff80046601 (4)<br>        0x80086601      ->      FS_IOC_GETFLAGS (8)<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59 Adding file: pvr.iptvsimple/resources/language/resource.language.fa_ir<br>        Unsupported ioctl: cmd=0xffffffff80046601 (4)<br>        0x80086601      ->      FS_IOC_GETFLAGS (8)<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59 Adding file: pvr.iptvsimple/resources/language/resource.language.fa_ir/strings.po<br>        Unsupported ioctl: cmd=0xffffffff80046601 (4)<br>        0x80086601      ->      FS_IOC_GETFLAGS (8)<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59 Adding file: pvr.iptvsimple/resources/language/resource.language.fi_fi<br>        Unsupported ioctl: cmd=0xffffffff80046601 (4)<br>        0x80086601      ->      FS_IOC_GETFLAGS (8)<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59 Adding file: pvr.iptvsimple/resources/language/resource.language.fi_fi/strings.po<br>        Unsupported ioctl: cmd=0xffffffff80046601 (4)<br>        0x80086601      ->      FS_IOC_GETFLAGS (8)<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59 Adding file: pvr.iptvsimple/resources/language/resource.language.fo_fo<br>        Unsupported ioctl: cmd=0xffffffff80046601 (4)<br>        0x80086601      ->      FS_IOC_GETFLAGS (8)<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59 Adding file: pvr.iptvsimple/resources/language/resource.language.fo_fo/strings.po<br>        Unsupported ioctl: cmd=0xffffffff80046601 (4)<br>        0x80086601      ->      FS_IOC_GETFLAGS (8)<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59 Adding file: pvr.iptvsimple/resources/language/resource.language.fr_ca<br>        Unsupported ioctl: cmd=0xffffffff80046601 (4)<br>        0x80086601      ->      FS_IOC_GETFLAGS (8)<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59 Adding file: pvr.iptvsimple/resources/language/resource.language.fr_ca/strings.po<br>        Unsupported ioctl: cmd=0xffffffff80046601 (4)<br>        0x80086601      ->      FS_IOC_GETFLAGS (8)<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59 Adding file: pvr.iptvsimple/resources/language/resource.language.fr_fr<br>        Unsupported ioctl: cmd=0xffffffff80046601 (4)<br>        0x80086601      ->      FS_IOC_GETFLAGS (8)<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59 Adding file: pvr.iptvsimple/resources/language/resource.language.fr_fr/strings.po<br>        Unsupported ioctl: cmd=0xffffffff80046601 (4)<br>        0x80086601      ->      FS_IOC_GETFLAGS (8)<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59 Adding file: pvr.iptvsimple/resources/language/resource.language.gl_es<br>        Unsupported ioctl: cmd=0xffffffff80046601 (4)<br>        0x80086601      ->      FS_IOC_GETFLAGS (8)<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59 Adding file: pvr.iptvsimple/resources/language/resource.language.gl_es/strings.po<br>        Unsupported ioctl: cmd=0xffffffff80046601 (4)<br>        0x80086601      ->      FS_IOC_GETFLAGS (8)<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59 Adding file: pvr.iptvsimple/resources/language/resource.language.he_il<br>        Unsupported ioctl: cmd=0xffffffff80046601 (4)<br>        0x80086601      ->      FS_IOC_GETFLAGS (8)<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59 Adding file: pvr.iptvsimple/resources/language/resource.language.he_il/strings.po<br>        Unsupported ioctl: cmd=0xffffffff80046601 (4)<br>        0x80086601      ->      FS_IOC_GETFLAGS (8)<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59 Adding file: pvr.iptvsimple/resources/language/resource.language.hi_in<br>        Unsupported ioctl: cmd=0xffffffff80046601 (4)<br>        0x80086601      ->      FS_IOC_GETFLAGS (8)<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59 Adding file: pvr.iptvsimple/resources/language/resource.language.hi_in/strings.po<br>        Unsupported ioctl: cmd=0xffffffff80046601 (4)<br>        0x80086601      ->      FS_IOC_GETFLAGS (8)<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59 Adding file: pvr.iptvsimple/resources/language/resource.language.hr_hr<br>        Unsupported ioctl: cmd=0xffffffff80046601 (4)<br>        0x80086601      ->      FS_IOC_GETFLAGS (8)<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59 Adding file: pvr.iptvsimple/resources/language/resource.language.hr_hr/strings.po<br>        Unsupported ioctl: cmd=0xffffffff80046601 (4)<br>        0x80086601      ->      FS_IOC_GETFLAGS (8)<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59 Adding file: pvr.iptvsimple/resources/language/resource.language.hu_hu<br>        Unsupported ioctl: cmd=0xffffffff80046601 (4)<br>        0x80086601      ->      FS_IOC_GETFLAGS (8)<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59 Adding file: pvr.iptvsimple/resources/language/resource.language.hu_hu/strings.po<br>        Unsupported ioctl: cmd=0xffffffff80046601 (4)<br>        0x80086601      ->      FS_IOC_GETFLAGS (8)<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59 Adding file: pvr.iptvsimple/resources/language/resource.language.hy_am<br>        Unsupported ioctl: cmd=0xffffffff80046601 (4)<br>        0x80086601      ->      FS_IOC_GETFLAGS (8)<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59 Adding file: pvr.iptvsimple/resources/language/resource.language.hy_am/strings.po<br>        Unsupported ioctl: cmd=0xffffffff80046601 (4)<br>        0x80086601      ->      FS_IOC_GETFLAGS (8)<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59 Adding file: pvr.iptvsimple/resources/language/resource.language.id_id<br>        Unsupported ioctl: cmd=0xffffffff80046601 (4)<br>        0x80086601      ->      FS_IOC_GETFLAGS (8)<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59 Adding file: pvr.iptvsimple/resources/language/resource.language.id_id/strings.po<br>        Unsupported ioctl: cmd=0xffffffff80046601 (4)<br>        0x80086601      ->      FS_IOC_GETFLAGS (8)<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59 Adding file: pvr.iptvsimple/resources/language/resource.language.is_is<br>        Unsupported ioctl: cmd=0xffffffff80046601 (4)<br>        0x80086601      ->      FS_IOC_GETFLAGS (8)<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59 Adding file: pvr.iptvsimple/resources/language/resource.language.is_is/strings.po<br>        Unsupported ioctl: cmd=0xffffffff80046601 (4)<br>        0x80086601      ->      FS_IOC_GETFLAGS (8)<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59 Adding file: pvr.iptvsimple/resources/language/resource.language.it_it<br>        Unsupported ioctl: cmd=0xffffffff80046601 (4)<br>        0x80086601      ->      FS_IOC_GETFLAGS (8)<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59 Adding file: pvr.iptvsimple/resources/language/resource.language.it_it/strings.po<br>        Unsupported ioctl: cmd=0xffffffff80046601 (4)<br>        0x80086601      ->      FS_IOC_GETFLAGS (8)<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59 Adding file: pvr.iptvsimple/resources/language/resource.language.ja_jp<br>        Unsupported ioctl: cmd=0xffffffff80046601 (4)<br>        0x80086601      ->      FS_IOC_GETFLAGS (8)<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59 Adding file: pvr.iptvsimple/resources/language/resource.language.ja_jp/strings.po<br>        Unsupported ioctl: cmd=0xffffffff80046601 (4)<br>        0x80086601      ->      FS_IOC_GETFLAGS (8)<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59 Adding file: pvr.iptvsimple/resources/language/resource.language.ko_kr<br>        Unsupported ioctl: cmd=0xffffffff80046601 (4)<br>        0x80086601      ->      FS_IOC_GETFLAGS (8)<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59 Adding file: pvr.iptvsimple/resources/language/resource.language.ko_kr/strings.po<br>        Unsupported ioctl: cmd=0xffffffff80046601 (4)<br>        0x80086601      ->      FS_IOC_GETFLAGS (8)<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59 Adding file: pvr.iptvsimple/resources/language/resource.language.lt_lt<br>        Unsupported ioctl: cmd=0xffffffff80046601 (4)<br>        0x80086601      ->      FS_IOC_GETFLAGS (8)<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59 Adding file: pvr.iptvsimple/resources/language/resource.language.lt_lt/strings.po<br>        Unsupported ioctl: cmd=0xffffffff80046601 (4)<br>        0x80086601      ->      FS_IOC_GETFLAGS (8)<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59 Adding file: pvr.iptvsimple/resources/language/resource.language.lv_lv<br>        Unsupported ioctl: cmd=0xffffffff80046601 (4)<br>        0x80086601      ->      FS_IOC_GETFLAGS (8)<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59 Adding file: pvr.iptvsimple/resources/language/resource.language.lv_lv/strings.po<br>        Unsupported ioctl: cmd=0xffffffff80046601 (4)<br>        0x80086601      ->      FS_IOC_GETFLAGS (8)<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59 Adding file: pvr.iptvsimple/resources/language/resource.language.mi<br>        Unsupported ioctl: cmd=0xffffffff80046601 (4)<br>        0x80086601      ->      FS_IOC_GETFLAGS (8)<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59 Adding file: pvr.iptvsimple/resources/language/resource.language.mi/strings.po<br>        Unsupported ioctl: cmd=0xffffffff80046601 (4)<br>        0x80086601      ->      FS_IOC_GETFLAGS (8)<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59 Adding file: pvr.iptvsimple/resources/language/resource.language.mk_mk<br>        Unsupported ioctl: cmd=0xffffffff80046601 (4)<br>        0x80086601      ->      FS_IOC_GETFLAGS (8)<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59 Adding file: pvr.iptvsimple/resources/language/resource.language.mk_mk/strings.po<br>        Unsupported ioctl: cmd=0xffffffff80046601 (4)<br>        0x80086601      ->      FS_IOC_GETFLAGS (8)<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59 Adding file: pvr.iptvsimple/resources/language/resource.language.ml_in<br>        Unsupported ioctl: cmd=0xffffffff80046601 (4)<br>        0x80086601      ->      FS_IOC_GETFLAGS (8)<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59 Adding file: pvr.iptvsimple/resources/language/resource.language.ml_in/strings.po<br>        Unsupported ioctl: cmd=0xffffffff80046601 (4)<br>        0x80086601      ->      FS_IOC_GETFLAGS (8)<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59 Adding file: pvr.iptvsimple/resources/language/resource.language.mn_mn<br>        Unsupported ioctl: cmd=0xffffffff80046601 (4)<br>        0x80086601      ->      FS_IOC_GETFLAGS (8)<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59 Adding file: pvr.iptvsimple/resources/language/resource.language.mn_mn/strings.po<br>        Unsupported ioctl: cmd=0xffffffff80046601 (4)<br>        0x80086601      ->      FS_IOC_GETFLAGS (8)<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59 Adding file: pvr.iptvsimple/resources/language/resource.language.ms_my<br>        Unsupported ioctl: cmd=0xffffffff80046601 (4)<br>        0x80086601      ->      FS_IOC_GETFLAGS (8)<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59 Adding file: pvr.iptvsimple/resources/language/resource.language.ms_my/strings.po<br>        Unsupported ioctl: cmd=0xffffffff80046601 (4)<br>        0x80086601      ->      FS_IOC_GETFLAGS (8)<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59 Adding file: pvr.iptvsimple/resources/language/resource.language.mt_mt<br>        Unsupported ioctl: cmd=0xffffffff80046601 (4)<br>        0x80086601      ->      FS_IOC_GETFLAGS (8)<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59 Adding file: pvr.iptvsimple/resources/language/resource.language.mt_mt/strings.po<br>        Unsupported ioctl: cmd=0xffffffff80046601 (4)<br>        0x80086601      ->      FS_IOC_GETFLAGS (8)<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59 Adding file: pvr.iptvsimple/resources/language/resource.language.my_mm<br>        Unsupported ioctl: cmd=0xffffffff80046601 (4)<br>        0x80086601      ->      FS_IOC_GETFLAGS (8)<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59 Adding file: pvr.iptvsimple/resources/language/resource.language.my_mm/strings.po<br>        Unsupported ioctl: cmd=0xffffffff80046601 (4)<br>        0x80086601      ->      FS_IOC_GETFLAGS (8)<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59 Adding file: pvr.iptvsimple/resources/language/resource.language.nb_no<br>        Unsupported ioctl: cmd=0xffffffff80046601 (4)<br>        0x80086601      ->      FS_IOC_GETFLAGS (8)<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59 Adding file: pvr.iptvsimple/resources/language/resource.language.nb_no/strings.po<br>        Unsupported ioctl: cmd=0xffffffff80046601 (4)<br>        0x80086601      ->      FS_IOC_GETFLAGS (8)<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59 Adding file: pvr.iptvsimple/resources/language/resource.language.nl_nl<br>        Unsupported ioctl: cmd=0xffffffff80046601 (4)<br>        0x80086601      ->      FS_IOC_GETFLAGS (8)<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59 Adding file: pvr.iptvsimple/resources/language/resource.language.nl_nl/strings.po<br>        Unsupported ioctl: cmd=0xffffffff80046601 (4)<br>        0x80086601      ->      FS_IOC_GETFLAGS (8)<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59 Adding file: pvr.iptvsimple/resources/language/resource.language.pl_pl<br>        Unsupported ioctl: cmd=0xffffffff80046601 (4)<br>        0x80086601      ->      FS_IOC_GETFLAGS (8)<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59 Adding file: pvr.iptvsimple/resources/language/resource.language.pl_pl/strings.po<br>        Unsupported ioctl: cmd=0xffffffff80046601 (4)<br>        0x80086601      ->      FS_IOC_GETFLAGS (8)<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59 Adding file: pvr.iptvsimple/resources/language/resource.language.pt_br<br>        Unsupported ioctl: cmd=0xffffffff80046601 (4)<br>        0x80086601      ->      FS_IOC_GETFLAGS (8)<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59 Adding file: pvr.iptvsimple/resources/language/resource.language.pt_br/strings.po<br>        Unsupported ioctl: cmd=0xffffffff80046601 (4)<br>        0x80086601      ->      FS_IOC_GETFLAGS (8)<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59 Adding file: pvr.iptvsimple/resources/language/resource.language.pt_pt<br>        Unsupported ioctl: cmd=0xffffffff80046601 (4)<br>        0x80086601      ->      FS_IOC_GETFLAGS (8)<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59 Adding file: pvr.iptvsimple/resources/language/resource.language.pt_pt/strings.po<br>        Unsupported ioctl: cmd=0xffffffff80046601 (4)<br>        0x80086601      ->      FS_IOC_GETFLAGS (8)<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59 Adding file: pvr.iptvsimple/resources/language/resource.language.ro_ro<br>        Unsupported ioctl: cmd=0xffffffff80046601 (4)<br>        0x80086601      ->      FS_IOC_GETFLAGS (8)<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59 Adding file: pvr.iptvsimple/resources/language/resource.language.ro_ro/strings.po<br>        Unsupported ioctl: cmd=0xffffffff80046601 (4)<br>        0x80086601      ->      FS_IOC_GETFLAGS (8)<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59 Adding file: pvr.iptvsimple/resources/language/resource.language.ru_ru<br>        Unsupported ioctl: cmd=0xffffffff80046601 (4)<br>        0x80086601      ->      FS_IOC_GETFLAGS (8)<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59 Adding file: pvr.iptvsimple/resources/language/resource.language.ru_ru/strings.po<br>        Unsupported ioctl: cmd=0xffffffff80046601 (4)<br>        0x80086601      ->      FS_IOC_GETFLAGS (8)<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59 Adding file: pvr.iptvsimple/resources/language/resource.language.si_lk<br>        Unsupported ioctl: cmd=0xffffffff80046601 (4)<br>        0x80086601      ->      FS_IOC_GETFLAGS (8)<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59 Adding file: pvr.iptvsimple/resources/language/resource.language.si_lk/strings.po<br>        Unsupported ioctl: cmd=0xffffffff80046601 (4)<br>        0x80086601      ->      FS_IOC_GETFLAGS (8)<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59 Adding file: pvr.iptvsimple/resources/language/resource.language.sk_sk<br>        Unsupported ioctl: cmd=0xffffffff80046601 (4)<br>        0x80086601      ->      FS_IOC_GETFLAGS (8)<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59 Adding file: pvr.iptvsimple/resources/language/resource.language.sk_sk/strings.po<br>        Unsupported ioctl: cmd=0xffffffff80046601 (4)<br>        0x80086601      ->      FS_IOC_GETFLAGS (8)<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59 Adding file: pvr.iptvsimple/resources/language/resource.language.sl_si<br>        Unsupported ioctl: cmd=0xffffffff80046601 (4)<br>        0x80086601      ->      FS_IOC_GETFLAGS (8)<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59 Adding file: pvr.iptvsimple/resources/language/resource.language.sl_si/strings.po<br>        Unsupported ioctl: cmd=0xffffffff80046601 (4)<br>        0x80086601      ->      FS_IOC_GETFLAGS (8)<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59 Adding file: pvr.iptvsimple/resources/language/resource.language.sq_al<br>        Unsupported ioctl: cmd=0xffffffff80046601 (4)<br>        0x80086601      ->      FS_IOC_GETFLAGS (8)<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59 Adding file: pvr.iptvsimple/resources/language/resource.language.sq_al/strings.po<br>        Unsupported ioctl: cmd=0xffffffff80046601 (4)<br>        0x80086601      ->      FS_IOC_GETFLAGS (8)<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59 Adding file: pvr.iptvsimple/resources/language/resource.language.sr_rs<br>        Unsupported ioctl: cmd=0xffffffff80046601 (4)<br>        0x80086601      ->      FS_IOC_GETFLAGS (8)<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59 Adding file: pvr.iptvsimple/resources/language/resource.language.sr_rs/strings.po<br>        Unsupported ioctl: cmd=0xffffffff80046601 (4)<br>        0x80086601      ->      FS_IOC_GETFLAGS (8)<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59 Adding file: pvr.iptvsimple/resources/language/resource.language.sr_rs@latin<br>        Unsupported ioctl: cmd=0xffffffff80046601 (4)<br>        0x80086601      ->      FS_IOC_GETFLAGS (8)<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59 Adding file: pvr.iptvsimple/resources/language/resource.language.sr_rs@latin/strings.po<br>        Unsupported ioctl: cmd=0xffffffff80046601 (4)<br>        0x80086601      ->      FS_IOC_GETFLAGS (8)<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59 Adding file: pvr.iptvsimple/resources/language/resource.language.sv_se<br>        Unsupported ioctl: cmd=0xffffffff80046601 (4)<br>        0x80086601      ->      FS_IOC_GETFLAGS (8)<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59 Adding file: pvr.iptvsimple/resources/language/resource.language.sv_se/strings.po<br>        Unsupported ioctl: cmd=0xffffffff80046601 (4)<br>        0x80086601      ->      FS_IOC_GETFLAGS (8)<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59 Adding file: pvr.iptvsimple/resources/language/resource.language.szl<br>        Unsupported ioctl: cmd=0xffffffff80046601 (4)<br>        0x80086601      ->      FS_IOC_GETFLAGS (8)<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59 Adding file: pvr.iptvsimple/resources/language/resource.language.szl/strings.po<br>        Unsupported ioctl: cmd=0xffffffff80046601 (4)<br>        0x80086601      ->      FS_IOC_GETFLAGS (8)<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59 Adding file: pvr.iptvsimple/resources/language/resource.language.ta_in<br>        Unsupported ioctl: cmd=0xffffffff80046601 (4)<br>        0x80086601      ->      FS_IOC_GETFLAGS (8)<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59 Adding file: pvr.iptvsimple/resources/language/resource.language.ta_in/strings.po<br>        Unsupported ioctl: cmd=0xffffffff80046601 (4)<br>        0x80086601      ->      FS_IOC_GETFLAGS (8)<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59 Adding file: pvr.iptvsimple/resources/language/resource.language.te_in<br>        Unsupported ioctl: cmd=0xffffffff80046601 (4)<br>        0x80086601      ->      FS_IOC_GETFLAGS (8)<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59 Adding file: pvr.iptvsimple/resources/language/resource.language.te_in/strings.po<br>        Unsupported ioctl: cmd=0xffffffff80046601 (4)<br>        0x80086601      ->      FS_IOC_GETFLAGS (8)<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59 Adding file: pvr.iptvsimple/resources/language/resource.language.tg_tj<br>        Unsupported ioctl: cmd=0xffffffff80046601 (4)<br>        0x80086601      ->      FS_IOC_GETFLAGS (8)<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59 Adding file: pvr.iptvsimple/resources/language/resource.language.tg_tj/strings.po<br>        Unsupported ioctl: cmd=0xffffffff80046601 (4)<br>        0x80086601      ->      FS_IOC_GETFLAGS (8)<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59 Adding file: pvr.iptvsimple/resources/language/resource.language.th_th<br>        Unsupported ioctl: cmd=0xffffffff80046601 (4)<br>        0x80086601      ->      FS_IOC_GETFLAGS (8)<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59 Adding file: pvr.iptvsimple/resources/language/resource.language.th_th/strings.po<br>        Unsupported ioctl: cmd=0xffffffff80046601 (4)<br>        0x80086601      ->      FS_IOC_GETFLAGS (8)<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59 Adding file: pvr.iptvsimple/resources/language/resource.language.tr_tr<br>        Unsupported ioctl: cmd=0xffffffff80046601 (4)<br>        0x80086601      ->      FS_IOC_GETFLAGS (8)<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59 Adding file: pvr.iptvsimple/resources/language/resource.language.tr_tr/strings.po<br>        Unsupported ioctl: cmd=0xffffffff80046601 (4)<br>        0x80086601      ->      FS_IOC_GETFLAGS (8)<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59 Adding file: pvr.iptvsimple/resources/language/resource.language.uk_ua<br>        Unsupported ioctl: cmd=0xffffffff80046601 (4)<br>        0x80086601      ->      FS_IOC_GETFLAGS (8)<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59 Adding file: pvr.iptvsimple/resources/language/resource.language.uk_ua/strings.po<br>        Unsupported ioctl: cmd=0xffffffff80046601 (4)<br>        0x80086601      ->      FS_IOC_GETFLAGS (8)<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59 Adding file: pvr.iptvsimple/resources/language/resource.language.uz_uz<br>        Unsupported ioctl: cmd=0xffffffff80046601 (4)<br>        0x80086601      ->      FS_IOC_GETFLAGS (8)<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59 Adding file: pvr.iptvsimple/resources/language/resource.language.uz_uz/strings.po<br>        Unsupported ioctl: cmd=0xffffffff80046601 (4)<br>        0x80086601      ->      FS_IOC_GETFLAGS (8)<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59 Adding file: pvr.iptvsimple/resources/language/resource.language.vi_vn<br>        Unsupported ioctl: cmd=0xffffffff80046601 (4)<br>        0x80086601      ->      FS_IOC_GETFLAGS (8)<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59 Adding file: pvr.iptvsimple/resources/language/resource.language.vi_vn/strings.po<br>        Unsupported ioctl: cmd=0xffffffff80046601 (4)<br>        0x80086601      ->      FS_IOC_GETFLAGS (8)<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59 Adding file: pvr.iptvsimple/resources/language/resource.language.zh_cn<br>        Unsupported ioctl: cmd=0xffffffff80046601 (4)<br>        0x80086601      ->      FS_IOC_GETFLAGS (8)<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59 Adding file: pvr.iptvsimple/resources/language/resource.language.zh_cn/strings.po<br>        Unsupported ioctl: cmd=0xffffffff80046601 (4)<br>        0x80086601      ->      FS_IOC_GETFLAGS (8)<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59 Adding file: pvr.iptvsimple/resources/language/resource.language.zh_tw<br>        Unsupported ioctl: cmd=0xffffffff80046601 (4)<br>        0x80086601      ->      FS_IOC_GETFLAGS (8)<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59 Adding file: pvr.iptvsimple/resources/language/resource.language.zh_tw/strings.po<br>        Unsupported ioctl: cmd=0xffffffff80046601 (4)<br>        0x80086601      ->      FS_IOC_GETFLAGS (8)<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59 Adding file: pvr.iptvsimple/resources/settings.xml<br>        Unsupported ioctl: cmd=0xffffffff80046601 (4)<br>        0x80086601      ->      FS_IOC_GETFLAGS (8)<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:1082 Warning, GetOption return NULL for: CPACK_PACKAGE_CHECKSUM<br>        /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:1005 Copy final package(s): /usr/local/src/pvr.iptvsimple/build/_CPack_Packages/Linux/ZIP/addon/addon-pvr.iptvsimple-3.3.1.zip to /usr/local/src/pvr.iptvsimple/build/addon-pvr.iptvsimple-3.3.1.zip<br>        CPack: /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:1015 - package: /usr/local/src/pvr.iptvsimple/build/addon-pvr.iptvsimple-3.3.1.zip generated.</div>