Something must be wrong with your build tree or your CMake installation.
This is from the CMake 2.4.8 Modules/CPack.cmake file:

cpack_set_if_not_set(CPACK_PACKAGE_RELOCATABLE "false")


# always force to exactly "true" or "false" for CPack.Info.plist.in:

if(CPACK_PACKAGE_RELOCATABLE)

  set(CPACK_PACKAGE_RELOCATABLE "true")

else(CPACK_PACKAGE_RELOCATABLE)

  set(CPACK_PACKAGE_RELOCATABLE "false")

endif(CPACK_PACKAGE_RELOCATABLE)


If CPACK_PACKAGE_RELOCATABLE is set to something other than "true" or
"false" at CPack time, then something very odd is happening....

If you start over with an empty build tree, do you get this same result?


On Tue, Apr 15, 2008 at 5:27 AM, Timenkov Yuri <[EMAIL PROTECTED]>
wrote:

> Hi everyone.
> This is just FYI.
>
> I'm started to playing with CPack (2.4) for Apple (Tiger 10.4,
> PackageMaker
> v2.1.1), and encountered very strange error:
> CPack: Compress package
>
> The package could not be created because of the following errors:
> No package identifier specified.
>
> While investigating causes of such strange behavior of PackageMaker I came
> to
> idea that cpack generates invalid XML file Info.plist. And does it because
> CPACK_PACKAGE_RELOCATABLE variable is not set. Moreover, it should be set
> to
> string value in lowercase.
>
> Regards, Yuri
> _______________________________________________
> CMake mailing list
> [email protected]
> http://www.cmake.org/mailman/listinfo/cmake
>
_______________________________________________
CMake mailing list
[email protected]
http://www.cmake.org/mailman/listinfo/cmake

Reply via email to