[CMake] Cpack generating hundreds of "​Unsupported ioctl: cmd=0xffffffff80046601 (4); 0x80086601 -> FS_IOC_GETFLAGS (8)" messages?

pgndev pgnet.dev at gmail.com
Wed Oct 11 19:37:59 EDT 2017


I'm building an app addon that uses Cpack to package up a zip, invoked from
a makefile.

At Cpack exec, it *does* package the zip, but also returns 300+
"Unsupported ioctl" messages.

They appear to be non-fatal, but are clearly indicating some problem:

    /usr/bin/cpack --config ./CPackConfig.cmake
        CPack: Create package using ZIP
        CPack: Install projects
        CPack: - Run preinstall target for: pvr.iptvsimple
        CPack: - Install project: pvr.iptvsimple
        CPack: -   Install component: pvr.iptvsimple-3.3.1
        CPack: Create package
        Unsupported ioctl: cmd=0xffffffff80046601 (4)
        0x80086601      ->      FS_IOC_GETFLAGS (8)
        Unsupported ioctl: cmd=0xffffffff80046601 (4)
        0x80086601      ->      FS_IOC_GETFLAGS (8)
        ... ( 300 + repetitions ) ...
        0x80086601      ->      FS_IOC_GETFLAGS (8)
        Unsupported ioctl: cmd=0xffffffff80046601 (4)
        0x80086601      ->      FS_IOC_GETFLAGS (8)
        CPack: - package:
/usr/local/src/pvr.iptvsimple/build/addon-pvr.iptvsimple-3.3.1.zip
generated.

cmake here is

    cmake --version
        cmake version 3.7.2
        CMake suite maintained and supported by Kitware (kitware.com/cmake).

running in a Raspbian9 chroot.

It's not just this addon; it's occurring on all addon's zipped -- within
this parent app, on this box.

What's causing these messages?  Some missing dependency?
Is there a fix/workaround?

For reference,

    cat ./CPackConfig.cmake
        # This file will be configured to contain variables for CPack.
These variables
        # should be set in the CMake list file of the project before CPack
module is
        # included. The list of available CPACK_xxx variables and their
associated
        # documentation may be obtained using
        #  cpack --help-variable-list
        #
        # Some variables are common to all generators (e.g.
CPACK_PACKAGE_NAME)
        # and some are specific to a generator
        # (e.g. CPACK_NSIS_EXTRA_INSTALL_COMMANDS). The generator specific
variables
        # usually begin with CPACK_<GENNAME>_xxxx.


        SET(CPACK_ARCHIVE_COMPONENT_INSTALL "ON")
        SET(CPACK_BINARY_7Z "")
        SET(CPACK_BINARY_BUNDLE "")
        SET(CPACK_BINARY_CYGWIN "")
        SET(CPACK_BINARY_DEB "")
        SET(CPACK_BINARY_DRAGNDROP "")
        SET(CPACK_BINARY_IFW "")
        SET(CPACK_BINARY_NSIS "")
        SET(CPACK_BINARY_OSXX11 "")
        SET(CPACK_BINARY_PACKAGEMAKER "")
        SET(CPACK_BINARY_PRODUCTBUILD "")
        SET(CPACK_BINARY_RPM "")
        SET(CPACK_BINARY_STGZ "")
        SET(CPACK_BINARY_TBZ2 "")
        SET(CPACK_BINARY_TGZ "")
        SET(CPACK_BINARY_TXZ "")
        SET(CPACK_BINARY_TZ "")
        SET(CPACK_BINARY_WIX "")
        SET(CPACK_BINARY_ZIP "")
        SET(CPACK_BUILD_SOURCE_DIRS
"/usr/local/src/pvr.iptvsimple;/usr/local/src/pvr.iptvsimple/build")
        SET(CPACK_CMAKE_GENERATOR "Unix Makefiles")
        SET(CPACK_COMPONENTS_ALL "pvr.iptvsimple-3.3.1")
        SET(CPACK_COMPONENTS_ALL_SET_BY_USER "TRUE")
        SET(CPACK_COMPONENTS_IGNORE_GROUPS "1")
        SET(CPACK_COMPONENT_UNSPECIFIED_HIDDEN "TRUE")
        SET(CPACK_COMPONENT_UNSPECIFIED_REQUIRED "TRUE")
        SET(CPACK_GENERATOR "ZIP")
        SET(CPACK_INCLUDE_TOPLEVEL_DIRECTORY "OFF")
        SET(CPACK_INSTALL_CMAKE_PROJECTS
"/usr/local/src/pvr.iptvsimple/build;pvr.iptvsimple;ALL;/")
        SET(CPACK_INSTALL_PREFIX "/usr/local")
        SET(CPACK_MODULE_PATH
"/usr/local/kodi/lib/kodi;/usr/local/kodi/share/kodi/cmake")
        SET(CPACK_NSIS_DISPLAY_NAME "pvr.iptvsimple 0.1.1")
        SET(CPACK_NSIS_INSTALLER_ICON_CODE "")
        SET(CPACK_NSIS_INSTALLER_MUI_ICON_CODE "")
        SET(CPACK_NSIS_INSTALL_ROOT "$PROGRAMFILES")
        SET(CPACK_NSIS_PACKAGE_NAME "pvr.iptvsimple 0.1.1")
        SET(CPACK_OUTPUT_CONFIG_FILE
"/usr/local/src/pvr.iptvsimple/build/CPackConfig.cmake")
        SET(CPACK_PACKAGE_DEFAULT_LOCATION "/")
        SET(CPACK_PACKAGE_DESCRIPTION_FILE
"/usr/share/cmake-3.7/Templates/CPack.GenericDescription.txt")
        SET(CPACK_PACKAGE_DESCRIPTION_SUMMARY "pvr.iptvsimple built using
CMake")
        SET(CPACK_PACKAGE_DIRECTORY "/usr/local/src/pvr.iptvsimple/build")
        SET(CPACK_PACKAGE_FILE_NAME "addon")
        SET(CPACK_PACKAGE_INSTALL_DIRECTORY "pvr.iptvsimple 0.1.1")
        SET(CPACK_PACKAGE_INSTALL_REGISTRY_KEY "pvr.iptvsimple 0.1.1")
        SET(CPACK_PACKAGE_NAME "pvr.iptvsimple")
        SET(CPACK_PACKAGE_RELOCATABLE "true")
        SET(CPACK_PACKAGE_VENDOR "Humanity")
        SET(CPACK_PACKAGE_VERSION "0.1.1")
        SET(CPACK_PACKAGE_VERSION_MAJOR "0")
        SET(CPACK_PACKAGE_VERSION_MINOR "1")
        SET(CPACK_PACKAGE_VERSION_PATCH "1")
        SET(CPACK_RESOURCE_FILE_LICENSE
"/usr/share/cmake-3.7/Templates/CPack.GenericLicense.txt")
        SET(CPACK_RESOURCE_FILE_README
"/usr/share/cmake-3.7/Templates/CPack.GenericDescription.txt")
        SET(CPACK_RESOURCE_FILE_WELCOME
"/usr/share/cmake-3.7/Templates/CPack.GenericWelcome.txt")
        SET(CPACK_SET_DESTDIR "OFF")
        SET(CPACK_SOURCE_7Z "")
        SET(CPACK_SOURCE_CYGWIN "")
        SET(CPACK_SOURCE_GENERATOR "TBZ2;TGZ;TXZ;TZ")
        SET(CPACK_SOURCE_OUTPUT_CONFIG_FILE
"/usr/local/src/pvr.iptvsimple/build/CPackSourceConfig.cmake")
        SET(CPACK_SOURCE_RPM "OFF")
        SET(CPACK_SOURCE_TBZ2 "ON")
        SET(CPACK_SOURCE_TGZ "ON")
        SET(CPACK_SOURCE_TXZ "ON")
        SET(CPACK_SOURCE_TZ "ON")
        SET(CPACK_SOURCE_ZIP "OFF")
        SET(CPACK_SYSTEM_NAME "Linux")
        SET(CPACK_TOPLEVEL_TAG "Linux")
        SET(CPACK_WIX_SIZEOF_VOID_P "4")

        if(NOT CPACK_PROPERTIES_FILE)
          set(CPACK_PROPERTIES_FILE
"/usr/local/src/pvr.iptvsimple/build/CPackProperties.cmake")
        endif()

        if(EXISTS ${CPACK_PROPERTIES_FILE})
          include(${CPACK_PROPERTIES_FILE})
        endif()

and the full --debug output of the pack step,

    /usr/bin/cpack --debug --config ./CPackConfig.cmake
        CPack: /build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cpack.cxx:175
Enable Debug

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:891
cmCPackZIPGenerator::SetOption(CPACK_GENERATOR, ZIP)

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:1082
Warning, GetOption return NULL for: CPACK_PROJECT_CONFIG_FILE

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:891
cmCPackZIPGenerator::SetOption(CPACK_PACKAGING_INSTALL_PREFIX, /)
        CPack:
/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:898
Create package using ZIP

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:55 Create
temp directory.

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:891
cmCPackZIPGenerator::SetOption(CPACK_OUTPUT_FILE_PREFIX,
/usr/local/src/pvr.iptvsimple/build)

/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)

/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)

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:891
cmCPackZIPGenerator::SetOption(CPACK_OUTPUT_FILE_NAME, addon.zip)

/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)

/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)

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:891
cmCPackZIPGenerator::SetOption(CPACK_INSTALL_DIRECTORY, /usr/local/)

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:891
cmCPackZIPGenerator::SetOption(CPACK_NATIVE_INSTALL_DIRECTORY, /usr/local/)

/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)

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:121 Look
for: CPACK_PACKAGE_DESCRIPTION_FILE

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:125 Look
for: /usr/share/cmake-3.7/Templates/CPack.GenericDescription.txt

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:891
cmCPackZIPGenerator::SetOption(CPACK_PACKAGE_DESCRIPTION, DESCRIPTION
        ===========

        This is an installer created using CPack (https://cmake.org). No
additional installation instructions provided.

        )

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:1082
Warning, GetOption return NULL for: CPACK_PACKAGE_CHECKSUM

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:891
cmCPackZIPGenerator::SetOption(CPACK_REMOVE_TOPLEVEL_DIRECTORY, 1)

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:1082
Warning, GetOption return NULL for: CPACK_COMPONENTS_ALL_IN_ONE_PACKAGE

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:1082
Warning, GetOption return NULL for: CPACK_COMPONENTS_ONE_PACKAGE_PER_GROUP

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:1082
Warning, GetOption return NULL for: CPACK_COMPONENTS_GROUPING

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:927 About
to install project
        CPack:
/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:173
Install projects

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:1135
GetPackagingInstallPrefix: '/'

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:1082
Warning, GetOption return NULL for: CPACK_INSTALL_COMMANDS

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:1082
Warning, GetOption return NULL for: CPACK_INSTALL_SCRIPT

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:1082
Warning, GetOption return NULL for: CPACK_IGNORE_FILES

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:1082
Warning, GetOption return NULL for: CPACK_INSTALLED_DIRECTORIES

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:1082
Warning, GetOption return NULL for: CPACK_MONOLITHIC_INSTALL

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:1082
Warning, GetOption return NULL for: CPACK_ALL_INSTALL_TYPES

/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

/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

/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

/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

/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

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:1082
Warning, GetOption return NULL for: CPACK_DOWNLOAD_ALL

/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

/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

/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

/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

/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

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:1082
Warning, GetOption return NULL for: CPACK_BUILD_CONFIG

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:584 -
Install command: /usr/bin/cmake --build . --target "preinstall"
        CPack:
/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:586 - Run
preinstall target for: pvr.iptvsimple
        CPack:
/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:610 -
Install project: pvr.iptvsimple
        CPack:
/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:620 -
Install component: pvr.iptvsimple-3.3.1

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:1082
Warning, GetOption return NULL for:
CPACK_COMPONENT_INCLUDE_TOPLEVEL_DIRECTORY

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:1135
GetPackagingInstallPrefix: '/'

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:731 -
Using non-DESTDIR install... (mf->AddDefinition)

/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/'

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:1082
Warning, GetOption return NULL for: CPACK_STRIP_FILES

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:1082
Warning, GetOption return NULL for:
CPACK_WARN_ON_ABSOLUTE_INSTALL_DESTINATION

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:1082
Warning, GetOption return NULL for:
CPACK_ERROR_ON_ABSOLUTE_INSTALL_DESTINATION

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:818
Adding file <pvr.iptvsimple> to component <pvr.iptvsimple-3.3.1>

/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>

/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>

/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>

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:818
Adding file <pvr.iptvsimple/pvr.iptvsimple.so> to component
<pvr.iptvsimple-3.3.1>

/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>

/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>

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:818
Adding file <pvr.iptvsimple/resources> to component <pvr.iptvsimple-3.3.1>

/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>

/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>

/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>

/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>

/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>

/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>

/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>

/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>

/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>

/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>

/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>

/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>

/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>

/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>

/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>

/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>

/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>

/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>

/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>

/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>

/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>

/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>

/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>

/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>

/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>

/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>

/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>

/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>

/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>

/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>

/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>

/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>

/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>

/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>

/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>

/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>

/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>

/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>

/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>

/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>

/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>

/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>

/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>

/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>

/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>

/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>

/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>

/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>

/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>

/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>

/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>

/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>

/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>

/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>

/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>

/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>

/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>

/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>

/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>

/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>

/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>

/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>

/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>

/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>

/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>

/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>

/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>

/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>

/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>

/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>

/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>

/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>

/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>

/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>

/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>

/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>

/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>

/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>

/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>

/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>

/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>

/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>

/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>

/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>

/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>

/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>

/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>

/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>

/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>

/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>

/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>

/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>

/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>

/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>

/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>

/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>

/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>

/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>

/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>

/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>

/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>

/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>

/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>

/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>

/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>

/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>

/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>

/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>

/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>

/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>

/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>

/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>

/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>

/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>

/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>

/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>

/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>

/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>

/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>

/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>

/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>

/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>

/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>

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:818
Adding file <pvr.iptvsimple/resources/language/resource.language.sr_rs at latin>
to component <pvr.iptvsimple-3.3.1>

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:818
Adding file <pvr.iptvsimple/resources/language/resource.language.sr_rs at latin/strings.po>
to component <pvr.iptvsimple-3.3.1>

/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>

/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>

/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>

/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>

/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>

/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>

/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>

/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>

/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>

/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>

/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>

/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>

/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>

/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>

/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>

/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>

/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>

/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>

/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>

/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>

/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>

/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>

/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>

/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>

/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>

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:891
cmCPackZIPGenerator::SetOption(CPACK_ABSOLUTE_DESTINATION_FILES, )

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:932 Done
install project

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:938 Find
files
        CPack:
/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:951
Create package

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:210
Toplevel:
/usr/local/src/pvr.iptvsimple/build/_CPack_Packages/Linux/ZIP/addon

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:1082
Warning, GetOption return NULL for: CPACK_MONOLITHIC_INSTALL

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:1082
Warning, GetOption return NULL for: CPACK_ZIP_USE_DISPLAY_NAME_IN_FILENAME

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:1082
Warning, GetOption return NULL for:
CPACK_COMPONENT_INCLUDE_TOPLEVEL_DIRECTORY

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59
Adding file: pvr.iptvsimple
        Unsupported ioctl: cmd=0xffffffff80046601 (4)
        0x80086601      ->      FS_IOC_GETFLAGS (8)

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59
Adding file: pvr.iptvsimple/addon.xml
        Unsupported ioctl: cmd=0xffffffff80046601 (4)
        0x80086601      ->      FS_IOC_GETFLAGS (8)

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59
Adding file: pvr.iptvsimple/changelog.txt
        Unsupported ioctl: cmd=0xffffffff80046601 (4)
        0x80086601      ->      FS_IOC_GETFLAGS (8)

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59
Adding file: pvr.iptvsimple/icon.png
        Unsupported ioctl: cmd=0xffffffff80046601 (4)
        0x80086601      ->      FS_IOC_GETFLAGS (8)

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59
Adding file: pvr.iptvsimple/pvr.iptvsimple.so

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59
Adding file: pvr.iptvsimple/pvr.iptvsimple.so.18.0

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59
Adding file: pvr.iptvsimple/pvr.iptvsimple.so.3.3.1
        Unsupported ioctl: cmd=0xffffffff80046601 (4)
        0x80086601      ->      FS_IOC_GETFLAGS (8)

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59
Adding file: pvr.iptvsimple/resources
        Unsupported ioctl: cmd=0xffffffff80046601 (4)
        0x80086601      ->      FS_IOC_GETFLAGS (8)

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59
Adding file: pvr.iptvsimple/resources/language
        Unsupported ioctl: cmd=0xffffffff80046601 (4)
        0x80086601      ->      FS_IOC_GETFLAGS (8)

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59
Adding file: pvr.iptvsimple/resources/language/resource.language.af_za
        Unsupported ioctl: cmd=0xffffffff80046601 (4)
        0x80086601      ->      FS_IOC_GETFLAGS (8)

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59
Adding file:
pvr.iptvsimple/resources/language/resource.language.af_za/strings.po
        Unsupported ioctl: cmd=0xffffffff80046601 (4)
        0x80086601      ->      FS_IOC_GETFLAGS (8)

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59
Adding file: pvr.iptvsimple/resources/language/resource.language.am_et
        Unsupported ioctl: cmd=0xffffffff80046601 (4)
        0x80086601      ->      FS_IOC_GETFLAGS (8)

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59
Adding file:
pvr.iptvsimple/resources/language/resource.language.am_et/strings.po
        Unsupported ioctl: cmd=0xffffffff80046601 (4)
        0x80086601      ->      FS_IOC_GETFLAGS (8)

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59
Adding file: pvr.iptvsimple/resources/language/resource.language.ar_sa
        Unsupported ioctl: cmd=0xffffffff80046601 (4)
        0x80086601      ->      FS_IOC_GETFLAGS (8)

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59
Adding file:
pvr.iptvsimple/resources/language/resource.language.ar_sa/strings.po
        Unsupported ioctl: cmd=0xffffffff80046601 (4)
        0x80086601      ->      FS_IOC_GETFLAGS (8)

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59
Adding file: pvr.iptvsimple/resources/language/resource.language.az_az
        Unsupported ioctl: cmd=0xffffffff80046601 (4)
        0x80086601      ->      FS_IOC_GETFLAGS (8)

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59
Adding file:
pvr.iptvsimple/resources/language/resource.language.az_az/strings.po
        Unsupported ioctl: cmd=0xffffffff80046601 (4)
        0x80086601      ->      FS_IOC_GETFLAGS (8)

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59
Adding file: pvr.iptvsimple/resources/language/resource.language.be_by
        Unsupported ioctl: cmd=0xffffffff80046601 (4)
        0x80086601      ->      FS_IOC_GETFLAGS (8)

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59
Adding file:
pvr.iptvsimple/resources/language/resource.language.be_by/strings.po
        Unsupported ioctl: cmd=0xffffffff80046601 (4)
        0x80086601      ->      FS_IOC_GETFLAGS (8)

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59
Adding file: pvr.iptvsimple/resources/language/resource.language.bg_bg
        Unsupported ioctl: cmd=0xffffffff80046601 (4)
        0x80086601      ->      FS_IOC_GETFLAGS (8)

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59
Adding file:
pvr.iptvsimple/resources/language/resource.language.bg_bg/strings.po
        Unsupported ioctl: cmd=0xffffffff80046601 (4)
        0x80086601      ->      FS_IOC_GETFLAGS (8)

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59
Adding file: pvr.iptvsimple/resources/language/resource.language.bs_ba
        Unsupported ioctl: cmd=0xffffffff80046601 (4)
        0x80086601      ->      FS_IOC_GETFLAGS (8)

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59
Adding file:
pvr.iptvsimple/resources/language/resource.language.bs_ba/strings.po
        Unsupported ioctl: cmd=0xffffffff80046601 (4)
        0x80086601      ->      FS_IOC_GETFLAGS (8)

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59
Adding file: pvr.iptvsimple/resources/language/resource.language.ca_es
        Unsupported ioctl: cmd=0xffffffff80046601 (4)
        0x80086601      ->      FS_IOC_GETFLAGS (8)

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59
Adding file:
pvr.iptvsimple/resources/language/resource.language.ca_es/strings.po
        Unsupported ioctl: cmd=0xffffffff80046601 (4)
        0x80086601      ->      FS_IOC_GETFLAGS (8)

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59
Adding file: pvr.iptvsimple/resources/language/resource.language.cs_cz
        Unsupported ioctl: cmd=0xffffffff80046601 (4)
        0x80086601      ->      FS_IOC_GETFLAGS (8)

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59
Adding file:
pvr.iptvsimple/resources/language/resource.language.cs_cz/strings.po
        Unsupported ioctl: cmd=0xffffffff80046601 (4)
        0x80086601      ->      FS_IOC_GETFLAGS (8)

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59
Adding file: pvr.iptvsimple/resources/language/resource.language.cy_gb
        Unsupported ioctl: cmd=0xffffffff80046601 (4)
        0x80086601      ->      FS_IOC_GETFLAGS (8)

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59
Adding file:
pvr.iptvsimple/resources/language/resource.language.cy_gb/strings.po
        Unsupported ioctl: cmd=0xffffffff80046601 (4)
        0x80086601      ->      FS_IOC_GETFLAGS (8)

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59
Adding file: pvr.iptvsimple/resources/language/resource.language.da_dk
        Unsupported ioctl: cmd=0xffffffff80046601 (4)
        0x80086601      ->      FS_IOC_GETFLAGS (8)

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59
Adding file:
pvr.iptvsimple/resources/language/resource.language.da_dk/strings.po
        Unsupported ioctl: cmd=0xffffffff80046601 (4)
        0x80086601      ->      FS_IOC_GETFLAGS (8)

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59
Adding file: pvr.iptvsimple/resources/language/resource.language.de_de
        Unsupported ioctl: cmd=0xffffffff80046601 (4)
        0x80086601      ->      FS_IOC_GETFLAGS (8)

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59
Adding file:
pvr.iptvsimple/resources/language/resource.language.de_de/strings.po
        Unsupported ioctl: cmd=0xffffffff80046601 (4)
        0x80086601      ->      FS_IOC_GETFLAGS (8)

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59
Adding file: pvr.iptvsimple/resources/language/resource.language.el_gr
        Unsupported ioctl: cmd=0xffffffff80046601 (4)
        0x80086601      ->      FS_IOC_GETFLAGS (8)

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59
Adding file:
pvr.iptvsimple/resources/language/resource.language.el_gr/strings.po
        Unsupported ioctl: cmd=0xffffffff80046601 (4)
        0x80086601      ->      FS_IOC_GETFLAGS (8)

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59
Adding file: pvr.iptvsimple/resources/language/resource.language.en_au
        Unsupported ioctl: cmd=0xffffffff80046601 (4)
        0x80086601      ->      FS_IOC_GETFLAGS (8)

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59
Adding file:
pvr.iptvsimple/resources/language/resource.language.en_au/strings.po
        Unsupported ioctl: cmd=0xffffffff80046601 (4)
        0x80086601      ->      FS_IOC_GETFLAGS (8)

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59
Adding file: pvr.iptvsimple/resources/language/resource.language.en_gb
        Unsupported ioctl: cmd=0xffffffff80046601 (4)
        0x80086601      ->      FS_IOC_GETFLAGS (8)

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59
Adding file:
pvr.iptvsimple/resources/language/resource.language.en_gb/strings.po
        Unsupported ioctl: cmd=0xffffffff80046601 (4)
        0x80086601      ->      FS_IOC_GETFLAGS (8)

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59
Adding file: pvr.iptvsimple/resources/language/resource.language.en_nz
        Unsupported ioctl: cmd=0xffffffff80046601 (4)
        0x80086601      ->      FS_IOC_GETFLAGS (8)

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59
Adding file:
pvr.iptvsimple/resources/language/resource.language.en_nz/strings.po
        Unsupported ioctl: cmd=0xffffffff80046601 (4)
        0x80086601      ->      FS_IOC_GETFLAGS (8)

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59
Adding file: pvr.iptvsimple/resources/language/resource.language.en_us
        Unsupported ioctl: cmd=0xffffffff80046601 (4)
        0x80086601      ->      FS_IOC_GETFLAGS (8)

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59
Adding file:
pvr.iptvsimple/resources/language/resource.language.en_us/strings.po
        Unsupported ioctl: cmd=0xffffffff80046601 (4)
        0x80086601      ->      FS_IOC_GETFLAGS (8)

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59
Adding file: pvr.iptvsimple/resources/language/resource.language.eo
        Unsupported ioctl: cmd=0xffffffff80046601 (4)
        0x80086601      ->      FS_IOC_GETFLAGS (8)

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59
Adding file:
pvr.iptvsimple/resources/language/resource.language.eo/strings.po
        Unsupported ioctl: cmd=0xffffffff80046601 (4)
        0x80086601      ->      FS_IOC_GETFLAGS (8)

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59
Adding file: pvr.iptvsimple/resources/language/resource.language.es_ar
        Unsupported ioctl: cmd=0xffffffff80046601 (4)
        0x80086601      ->      FS_IOC_GETFLAGS (8)

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59
Adding file:
pvr.iptvsimple/resources/language/resource.language.es_ar/strings.po
        Unsupported ioctl: cmd=0xffffffff80046601 (4)
        0x80086601      ->      FS_IOC_GETFLAGS (8)

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59
Adding file: pvr.iptvsimple/resources/language/resource.language.es_es
        Unsupported ioctl: cmd=0xffffffff80046601 (4)
        0x80086601      ->      FS_IOC_GETFLAGS (8)

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59
Adding file:
pvr.iptvsimple/resources/language/resource.language.es_es/strings.po
        Unsupported ioctl: cmd=0xffffffff80046601 (4)
        0x80086601      ->      FS_IOC_GETFLAGS (8)

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59
Adding file: pvr.iptvsimple/resources/language/resource.language.es_mx
        Unsupported ioctl: cmd=0xffffffff80046601 (4)
        0x80086601      ->      FS_IOC_GETFLAGS (8)

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59
Adding file:
pvr.iptvsimple/resources/language/resource.language.es_mx/strings.po
        Unsupported ioctl: cmd=0xffffffff80046601 (4)
        0x80086601      ->      FS_IOC_GETFLAGS (8)

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59
Adding file: pvr.iptvsimple/resources/language/resource.language.et_ee
        Unsupported ioctl: cmd=0xffffffff80046601 (4)
        0x80086601      ->      FS_IOC_GETFLAGS (8)

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59
Adding file:
pvr.iptvsimple/resources/language/resource.language.et_ee/strings.po
        Unsupported ioctl: cmd=0xffffffff80046601 (4)
        0x80086601      ->      FS_IOC_GETFLAGS (8)

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59
Adding file: pvr.iptvsimple/resources/language/resource.language.eu_es
        Unsupported ioctl: cmd=0xffffffff80046601 (4)
        0x80086601      ->      FS_IOC_GETFLAGS (8)

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59
Adding file:
pvr.iptvsimple/resources/language/resource.language.eu_es/strings.po
        Unsupported ioctl: cmd=0xffffffff80046601 (4)
        0x80086601      ->      FS_IOC_GETFLAGS (8)

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59
Adding file: pvr.iptvsimple/resources/language/resource.language.fa_af
        Unsupported ioctl: cmd=0xffffffff80046601 (4)
        0x80086601      ->      FS_IOC_GETFLAGS (8)

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59
Adding file:
pvr.iptvsimple/resources/language/resource.language.fa_af/strings.po
        Unsupported ioctl: cmd=0xffffffff80046601 (4)
        0x80086601      ->      FS_IOC_GETFLAGS (8)

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59
Adding file: pvr.iptvsimple/resources/language/resource.language.fa_ir
        Unsupported ioctl: cmd=0xffffffff80046601 (4)
        0x80086601      ->      FS_IOC_GETFLAGS (8)

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59
Adding file:
pvr.iptvsimple/resources/language/resource.language.fa_ir/strings.po
        Unsupported ioctl: cmd=0xffffffff80046601 (4)
        0x80086601      ->      FS_IOC_GETFLAGS (8)

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59
Adding file: pvr.iptvsimple/resources/language/resource.language.fi_fi
        Unsupported ioctl: cmd=0xffffffff80046601 (4)
        0x80086601      ->      FS_IOC_GETFLAGS (8)

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59
Adding file:
pvr.iptvsimple/resources/language/resource.language.fi_fi/strings.po
        Unsupported ioctl: cmd=0xffffffff80046601 (4)
        0x80086601      ->      FS_IOC_GETFLAGS (8)

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59
Adding file: pvr.iptvsimple/resources/language/resource.language.fo_fo
        Unsupported ioctl: cmd=0xffffffff80046601 (4)
        0x80086601      ->      FS_IOC_GETFLAGS (8)

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59
Adding file:
pvr.iptvsimple/resources/language/resource.language.fo_fo/strings.po
        Unsupported ioctl: cmd=0xffffffff80046601 (4)
        0x80086601      ->      FS_IOC_GETFLAGS (8)

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59
Adding file: pvr.iptvsimple/resources/language/resource.language.fr_ca
        Unsupported ioctl: cmd=0xffffffff80046601 (4)
        0x80086601      ->      FS_IOC_GETFLAGS (8)

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59
Adding file:
pvr.iptvsimple/resources/language/resource.language.fr_ca/strings.po
        Unsupported ioctl: cmd=0xffffffff80046601 (4)
        0x80086601      ->      FS_IOC_GETFLAGS (8)

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59
Adding file: pvr.iptvsimple/resources/language/resource.language.fr_fr
        Unsupported ioctl: cmd=0xffffffff80046601 (4)
        0x80086601      ->      FS_IOC_GETFLAGS (8)

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59
Adding file:
pvr.iptvsimple/resources/language/resource.language.fr_fr/strings.po
        Unsupported ioctl: cmd=0xffffffff80046601 (4)
        0x80086601      ->      FS_IOC_GETFLAGS (8)

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59
Adding file: pvr.iptvsimple/resources/language/resource.language.gl_es
        Unsupported ioctl: cmd=0xffffffff80046601 (4)
        0x80086601      ->      FS_IOC_GETFLAGS (8)

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59
Adding file:
pvr.iptvsimple/resources/language/resource.language.gl_es/strings.po
        Unsupported ioctl: cmd=0xffffffff80046601 (4)
        0x80086601      ->      FS_IOC_GETFLAGS (8)

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59
Adding file: pvr.iptvsimple/resources/language/resource.language.he_il
        Unsupported ioctl: cmd=0xffffffff80046601 (4)
        0x80086601      ->      FS_IOC_GETFLAGS (8)

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59
Adding file:
pvr.iptvsimple/resources/language/resource.language.he_il/strings.po
        Unsupported ioctl: cmd=0xffffffff80046601 (4)
        0x80086601      ->      FS_IOC_GETFLAGS (8)

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59
Adding file: pvr.iptvsimple/resources/language/resource.language.hi_in
        Unsupported ioctl: cmd=0xffffffff80046601 (4)
        0x80086601      ->      FS_IOC_GETFLAGS (8)

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59
Adding file:
pvr.iptvsimple/resources/language/resource.language.hi_in/strings.po
        Unsupported ioctl: cmd=0xffffffff80046601 (4)
        0x80086601      ->      FS_IOC_GETFLAGS (8)

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59
Adding file: pvr.iptvsimple/resources/language/resource.language.hr_hr
        Unsupported ioctl: cmd=0xffffffff80046601 (4)
        0x80086601      ->      FS_IOC_GETFLAGS (8)

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59
Adding file:
pvr.iptvsimple/resources/language/resource.language.hr_hr/strings.po
        Unsupported ioctl: cmd=0xffffffff80046601 (4)
        0x80086601      ->      FS_IOC_GETFLAGS (8)

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59
Adding file: pvr.iptvsimple/resources/language/resource.language.hu_hu
        Unsupported ioctl: cmd=0xffffffff80046601 (4)
        0x80086601      ->      FS_IOC_GETFLAGS (8)

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59
Adding file:
pvr.iptvsimple/resources/language/resource.language.hu_hu/strings.po
        Unsupported ioctl: cmd=0xffffffff80046601 (4)
        0x80086601      ->      FS_IOC_GETFLAGS (8)

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59
Adding file: pvr.iptvsimple/resources/language/resource.language.hy_am
        Unsupported ioctl: cmd=0xffffffff80046601 (4)
        0x80086601      ->      FS_IOC_GETFLAGS (8)

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59
Adding file:
pvr.iptvsimple/resources/language/resource.language.hy_am/strings.po
        Unsupported ioctl: cmd=0xffffffff80046601 (4)
        0x80086601      ->      FS_IOC_GETFLAGS (8)

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59
Adding file: pvr.iptvsimple/resources/language/resource.language.id_id
        Unsupported ioctl: cmd=0xffffffff80046601 (4)
        0x80086601      ->      FS_IOC_GETFLAGS (8)

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59
Adding file:
pvr.iptvsimple/resources/language/resource.language.id_id/strings.po
        Unsupported ioctl: cmd=0xffffffff80046601 (4)
        0x80086601      ->      FS_IOC_GETFLAGS (8)

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59
Adding file: pvr.iptvsimple/resources/language/resource.language.is_is
        Unsupported ioctl: cmd=0xffffffff80046601 (4)
        0x80086601      ->      FS_IOC_GETFLAGS (8)

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59
Adding file:
pvr.iptvsimple/resources/language/resource.language.is_is/strings.po
        Unsupported ioctl: cmd=0xffffffff80046601 (4)
        0x80086601      ->      FS_IOC_GETFLAGS (8)

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59
Adding file: pvr.iptvsimple/resources/language/resource.language.it_it
        Unsupported ioctl: cmd=0xffffffff80046601 (4)
        0x80086601      ->      FS_IOC_GETFLAGS (8)

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59
Adding file:
pvr.iptvsimple/resources/language/resource.language.it_it/strings.po
        Unsupported ioctl: cmd=0xffffffff80046601 (4)
        0x80086601      ->      FS_IOC_GETFLAGS (8)

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59
Adding file: pvr.iptvsimple/resources/language/resource.language.ja_jp
        Unsupported ioctl: cmd=0xffffffff80046601 (4)
        0x80086601      ->      FS_IOC_GETFLAGS (8)

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59
Adding file:
pvr.iptvsimple/resources/language/resource.language.ja_jp/strings.po
        Unsupported ioctl: cmd=0xffffffff80046601 (4)
        0x80086601      ->      FS_IOC_GETFLAGS (8)

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59
Adding file: pvr.iptvsimple/resources/language/resource.language.ko_kr
        Unsupported ioctl: cmd=0xffffffff80046601 (4)
        0x80086601      ->      FS_IOC_GETFLAGS (8)

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59
Adding file:
pvr.iptvsimple/resources/language/resource.language.ko_kr/strings.po
        Unsupported ioctl: cmd=0xffffffff80046601 (4)
        0x80086601      ->      FS_IOC_GETFLAGS (8)

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59
Adding file: pvr.iptvsimple/resources/language/resource.language.lt_lt
        Unsupported ioctl: cmd=0xffffffff80046601 (4)
        0x80086601      ->      FS_IOC_GETFLAGS (8)

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59
Adding file:
pvr.iptvsimple/resources/language/resource.language.lt_lt/strings.po
        Unsupported ioctl: cmd=0xffffffff80046601 (4)
        0x80086601      ->      FS_IOC_GETFLAGS (8)

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59
Adding file: pvr.iptvsimple/resources/language/resource.language.lv_lv
        Unsupported ioctl: cmd=0xffffffff80046601 (4)
        0x80086601      ->      FS_IOC_GETFLAGS (8)

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59
Adding file:
pvr.iptvsimple/resources/language/resource.language.lv_lv/strings.po
        Unsupported ioctl: cmd=0xffffffff80046601 (4)
        0x80086601      ->      FS_IOC_GETFLAGS (8)

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59
Adding file: pvr.iptvsimple/resources/language/resource.language.mi
        Unsupported ioctl: cmd=0xffffffff80046601 (4)
        0x80086601      ->      FS_IOC_GETFLAGS (8)

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59
Adding file:
pvr.iptvsimple/resources/language/resource.language.mi/strings.po
        Unsupported ioctl: cmd=0xffffffff80046601 (4)
        0x80086601      ->      FS_IOC_GETFLAGS (8)

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59
Adding file: pvr.iptvsimple/resources/language/resource.language.mk_mk
        Unsupported ioctl: cmd=0xffffffff80046601 (4)
        0x80086601      ->      FS_IOC_GETFLAGS (8)

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59
Adding file:
pvr.iptvsimple/resources/language/resource.language.mk_mk/strings.po
        Unsupported ioctl: cmd=0xffffffff80046601 (4)
        0x80086601      ->      FS_IOC_GETFLAGS (8)

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59
Adding file: pvr.iptvsimple/resources/language/resource.language.ml_in
        Unsupported ioctl: cmd=0xffffffff80046601 (4)
        0x80086601      ->      FS_IOC_GETFLAGS (8)

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59
Adding file:
pvr.iptvsimple/resources/language/resource.language.ml_in/strings.po
        Unsupported ioctl: cmd=0xffffffff80046601 (4)
        0x80086601      ->      FS_IOC_GETFLAGS (8)

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59
Adding file: pvr.iptvsimple/resources/language/resource.language.mn_mn
        Unsupported ioctl: cmd=0xffffffff80046601 (4)
        0x80086601      ->      FS_IOC_GETFLAGS (8)

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59
Adding file:
pvr.iptvsimple/resources/language/resource.language.mn_mn/strings.po
        Unsupported ioctl: cmd=0xffffffff80046601 (4)
        0x80086601      ->      FS_IOC_GETFLAGS (8)

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59
Adding file: pvr.iptvsimple/resources/language/resource.language.ms_my
        Unsupported ioctl: cmd=0xffffffff80046601 (4)
        0x80086601      ->      FS_IOC_GETFLAGS (8)

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59
Adding file:
pvr.iptvsimple/resources/language/resource.language.ms_my/strings.po
        Unsupported ioctl: cmd=0xffffffff80046601 (4)
        0x80086601      ->      FS_IOC_GETFLAGS (8)

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59
Adding file: pvr.iptvsimple/resources/language/resource.language.mt_mt
        Unsupported ioctl: cmd=0xffffffff80046601 (4)
        0x80086601      ->      FS_IOC_GETFLAGS (8)

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59
Adding file:
pvr.iptvsimple/resources/language/resource.language.mt_mt/strings.po
        Unsupported ioctl: cmd=0xffffffff80046601 (4)
        0x80086601      ->      FS_IOC_GETFLAGS (8)

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59
Adding file: pvr.iptvsimple/resources/language/resource.language.my_mm
        Unsupported ioctl: cmd=0xffffffff80046601 (4)
        0x80086601      ->      FS_IOC_GETFLAGS (8)

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59
Adding file:
pvr.iptvsimple/resources/language/resource.language.my_mm/strings.po
        Unsupported ioctl: cmd=0xffffffff80046601 (4)
        0x80086601      ->      FS_IOC_GETFLAGS (8)

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59
Adding file: pvr.iptvsimple/resources/language/resource.language.nb_no
        Unsupported ioctl: cmd=0xffffffff80046601 (4)
        0x80086601      ->      FS_IOC_GETFLAGS (8)

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59
Adding file:
pvr.iptvsimple/resources/language/resource.language.nb_no/strings.po
        Unsupported ioctl: cmd=0xffffffff80046601 (4)
        0x80086601      ->      FS_IOC_GETFLAGS (8)

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59
Adding file: pvr.iptvsimple/resources/language/resource.language.nl_nl
        Unsupported ioctl: cmd=0xffffffff80046601 (4)
        0x80086601      ->      FS_IOC_GETFLAGS (8)

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59
Adding file:
pvr.iptvsimple/resources/language/resource.language.nl_nl/strings.po
        Unsupported ioctl: cmd=0xffffffff80046601 (4)
        0x80086601      ->      FS_IOC_GETFLAGS (8)

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59
Adding file: pvr.iptvsimple/resources/language/resource.language.pl_pl
        Unsupported ioctl: cmd=0xffffffff80046601 (4)
        0x80086601      ->      FS_IOC_GETFLAGS (8)

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59
Adding file:
pvr.iptvsimple/resources/language/resource.language.pl_pl/strings.po
        Unsupported ioctl: cmd=0xffffffff80046601 (4)
        0x80086601      ->      FS_IOC_GETFLAGS (8)

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59
Adding file: pvr.iptvsimple/resources/language/resource.language.pt_br
        Unsupported ioctl: cmd=0xffffffff80046601 (4)
        0x80086601      ->      FS_IOC_GETFLAGS (8)

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59
Adding file:
pvr.iptvsimple/resources/language/resource.language.pt_br/strings.po
        Unsupported ioctl: cmd=0xffffffff80046601 (4)
        0x80086601      ->      FS_IOC_GETFLAGS (8)

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59
Adding file: pvr.iptvsimple/resources/language/resource.language.pt_pt
        Unsupported ioctl: cmd=0xffffffff80046601 (4)
        0x80086601      ->      FS_IOC_GETFLAGS (8)

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59
Adding file:
pvr.iptvsimple/resources/language/resource.language.pt_pt/strings.po
        Unsupported ioctl: cmd=0xffffffff80046601 (4)
        0x80086601      ->      FS_IOC_GETFLAGS (8)

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59
Adding file: pvr.iptvsimple/resources/language/resource.language.ro_ro
        Unsupported ioctl: cmd=0xffffffff80046601 (4)
        0x80086601      ->      FS_IOC_GETFLAGS (8)

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59
Adding file:
pvr.iptvsimple/resources/language/resource.language.ro_ro/strings.po
        Unsupported ioctl: cmd=0xffffffff80046601 (4)
        0x80086601      ->      FS_IOC_GETFLAGS (8)

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59
Adding file: pvr.iptvsimple/resources/language/resource.language.ru_ru
        Unsupported ioctl: cmd=0xffffffff80046601 (4)
        0x80086601      ->      FS_IOC_GETFLAGS (8)

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59
Adding file:
pvr.iptvsimple/resources/language/resource.language.ru_ru/strings.po
        Unsupported ioctl: cmd=0xffffffff80046601 (4)
        0x80086601      ->      FS_IOC_GETFLAGS (8)

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59
Adding file: pvr.iptvsimple/resources/language/resource.language.si_lk
        Unsupported ioctl: cmd=0xffffffff80046601 (4)
        0x80086601      ->      FS_IOC_GETFLAGS (8)

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59
Adding file:
pvr.iptvsimple/resources/language/resource.language.si_lk/strings.po
        Unsupported ioctl: cmd=0xffffffff80046601 (4)
        0x80086601      ->      FS_IOC_GETFLAGS (8)

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59
Adding file: pvr.iptvsimple/resources/language/resource.language.sk_sk
        Unsupported ioctl: cmd=0xffffffff80046601 (4)
        0x80086601      ->      FS_IOC_GETFLAGS (8)

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59
Adding file:
pvr.iptvsimple/resources/language/resource.language.sk_sk/strings.po
        Unsupported ioctl: cmd=0xffffffff80046601 (4)
        0x80086601      ->      FS_IOC_GETFLAGS (8)

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59
Adding file: pvr.iptvsimple/resources/language/resource.language.sl_si
        Unsupported ioctl: cmd=0xffffffff80046601 (4)
        0x80086601      ->      FS_IOC_GETFLAGS (8)

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59
Adding file:
pvr.iptvsimple/resources/language/resource.language.sl_si/strings.po
        Unsupported ioctl: cmd=0xffffffff80046601 (4)
        0x80086601      ->      FS_IOC_GETFLAGS (8)

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59
Adding file: pvr.iptvsimple/resources/language/resource.language.sq_al
        Unsupported ioctl: cmd=0xffffffff80046601 (4)
        0x80086601      ->      FS_IOC_GETFLAGS (8)

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59
Adding file:
pvr.iptvsimple/resources/language/resource.language.sq_al/strings.po
        Unsupported ioctl: cmd=0xffffffff80046601 (4)
        0x80086601      ->      FS_IOC_GETFLAGS (8)

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59
Adding file: pvr.iptvsimple/resources/language/resource.language.sr_rs
        Unsupported ioctl: cmd=0xffffffff80046601 (4)
        0x80086601      ->      FS_IOC_GETFLAGS (8)

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59
Adding file:
pvr.iptvsimple/resources/language/resource.language.sr_rs/strings.po
        Unsupported ioctl: cmd=0xffffffff80046601 (4)
        0x80086601      ->      FS_IOC_GETFLAGS (8)

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59
Adding file: pvr.iptvsimple/resources/language/resource.language.sr_rs at latin
        Unsupported ioctl: cmd=0xffffffff80046601 (4)
        0x80086601      ->      FS_IOC_GETFLAGS (8)

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59
Adding file: pvr.iptvsimple/resources/language/resource.language.sr_rs at latin
/strings.po
        Unsupported ioctl: cmd=0xffffffff80046601 (4)
        0x80086601      ->      FS_IOC_GETFLAGS (8)

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59
Adding file: pvr.iptvsimple/resources/language/resource.language.sv_se
        Unsupported ioctl: cmd=0xffffffff80046601 (4)
        0x80086601      ->      FS_IOC_GETFLAGS (8)

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59
Adding file:
pvr.iptvsimple/resources/language/resource.language.sv_se/strings.po
        Unsupported ioctl: cmd=0xffffffff80046601 (4)
        0x80086601      ->      FS_IOC_GETFLAGS (8)

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59
Adding file: pvr.iptvsimple/resources/language/resource.language.szl
        Unsupported ioctl: cmd=0xffffffff80046601 (4)
        0x80086601      ->      FS_IOC_GETFLAGS (8)

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59
Adding file:
pvr.iptvsimple/resources/language/resource.language.szl/strings.po
        Unsupported ioctl: cmd=0xffffffff80046601 (4)
        0x80086601      ->      FS_IOC_GETFLAGS (8)

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59
Adding file: pvr.iptvsimple/resources/language/resource.language.ta_in
        Unsupported ioctl: cmd=0xffffffff80046601 (4)
        0x80086601      ->      FS_IOC_GETFLAGS (8)

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59
Adding file:
pvr.iptvsimple/resources/language/resource.language.ta_in/strings.po
        Unsupported ioctl: cmd=0xffffffff80046601 (4)
        0x80086601      ->      FS_IOC_GETFLAGS (8)

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59
Adding file: pvr.iptvsimple/resources/language/resource.language.te_in
        Unsupported ioctl: cmd=0xffffffff80046601 (4)
        0x80086601      ->      FS_IOC_GETFLAGS (8)

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59
Adding file:
pvr.iptvsimple/resources/language/resource.language.te_in/strings.po
        Unsupported ioctl: cmd=0xffffffff80046601 (4)
        0x80086601      ->      FS_IOC_GETFLAGS (8)

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59
Adding file: pvr.iptvsimple/resources/language/resource.language.tg_tj
        Unsupported ioctl: cmd=0xffffffff80046601 (4)
        0x80086601      ->      FS_IOC_GETFLAGS (8)

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59
Adding file:
pvr.iptvsimple/resources/language/resource.language.tg_tj/strings.po
        Unsupported ioctl: cmd=0xffffffff80046601 (4)
        0x80086601      ->      FS_IOC_GETFLAGS (8)

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59
Adding file: pvr.iptvsimple/resources/language/resource.language.th_th
        Unsupported ioctl: cmd=0xffffffff80046601 (4)
        0x80086601      ->      FS_IOC_GETFLAGS (8)

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59
Adding file:
pvr.iptvsimple/resources/language/resource.language.th_th/strings.po
        Unsupported ioctl: cmd=0xffffffff80046601 (4)
        0x80086601      ->      FS_IOC_GETFLAGS (8)

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59
Adding file: pvr.iptvsimple/resources/language/resource.language.tr_tr
        Unsupported ioctl: cmd=0xffffffff80046601 (4)
        0x80086601      ->      FS_IOC_GETFLAGS (8)

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59
Adding file:
pvr.iptvsimple/resources/language/resource.language.tr_tr/strings.po
        Unsupported ioctl: cmd=0xffffffff80046601 (4)
        0x80086601      ->      FS_IOC_GETFLAGS (8)

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59
Adding file: pvr.iptvsimple/resources/language/resource.language.uk_ua
        Unsupported ioctl: cmd=0xffffffff80046601 (4)
        0x80086601      ->      FS_IOC_GETFLAGS (8)

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59
Adding file:
pvr.iptvsimple/resources/language/resource.language.uk_ua/strings.po
        Unsupported ioctl: cmd=0xffffffff80046601 (4)
        0x80086601      ->      FS_IOC_GETFLAGS (8)

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59
Adding file: pvr.iptvsimple/resources/language/resource.language.uz_uz
        Unsupported ioctl: cmd=0xffffffff80046601 (4)
        0x80086601      ->      FS_IOC_GETFLAGS (8)

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59
Adding file:
pvr.iptvsimple/resources/language/resource.language.uz_uz/strings.po
        Unsupported ioctl: cmd=0xffffffff80046601 (4)
        0x80086601      ->      FS_IOC_GETFLAGS (8)

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59
Adding file: pvr.iptvsimple/resources/language/resource.language.vi_vn
        Unsupported ioctl: cmd=0xffffffff80046601 (4)
        0x80086601      ->      FS_IOC_GETFLAGS (8)

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59
Adding file:
pvr.iptvsimple/resources/language/resource.language.vi_vn/strings.po
        Unsupported ioctl: cmd=0xffffffff80046601 (4)
        0x80086601      ->      FS_IOC_GETFLAGS (8)

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59
Adding file: pvr.iptvsimple/resources/language/resource.language.zh_cn
        Unsupported ioctl: cmd=0xffffffff80046601 (4)
        0x80086601      ->      FS_IOC_GETFLAGS (8)

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59
Adding file:
pvr.iptvsimple/resources/language/resource.language.zh_cn/strings.po
        Unsupported ioctl: cmd=0xffffffff80046601 (4)
        0x80086601      ->      FS_IOC_GETFLAGS (8)

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59
Adding file: pvr.iptvsimple/resources/language/resource.language.zh_tw
        Unsupported ioctl: cmd=0xffffffff80046601 (4)
        0x80086601      ->      FS_IOC_GETFLAGS (8)

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59
Adding file:
pvr.iptvsimple/resources/language/resource.language.zh_tw/strings.po
        Unsupported ioctl: cmd=0xffffffff80046601 (4)
        0x80086601      ->      FS_IOC_GETFLAGS (8)

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackArchiveGenerator.cxx:59
Adding file: pvr.iptvsimple/resources/settings.xml
        Unsupported ioctl: cmd=0xffffffff80046601 (4)
        0x80086601      ->      FS_IOC_GETFLAGS (8)

/build/cmake-1PHRnX/cmake-3.7.2/Source/CPack/cmCPackGenerator.cxx:1082
Warning, GetOption return NULL for: CPACK_PACKAGE_CHECKSUM

/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
        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.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://public.kitware.com/pipermail/cmake/attachments/20171011/e6b47687/attachment-0001.html>


More information about the CMake mailing list