After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 730233 - windows: cmake : install phase fails
windows: cmake : install phase fails
Status: RESOLVED FIXED
Product: GStreamer
Classification: Platform
Component: packages
unspecified
Other Windows
: Normal normal
: 1.3.3
Assigned To: GStreamer Maintainers
GStreamer Maintainers
Depends on:
Blocks:
 
 
Reported: 2014-05-16 08:25 UTC by Edward Hervey
Modified: 2014-05-22 14:27 UTC
See Also:
GNOME target: ---
GNOME version: ---



Description Edward Hervey 2014-05-16 08:25:34 UTC
when running make install, the Makefile that cmake generated will call 'cmake' for the install phase ... which isn't in the path

install: preinstall
    @echo "Install the project..."
    cmake -P cmake_install.cmake


An easy workaround was just adding the builddir bin directory to PATH before calling make install
Comment 1 Sebastian Dröge (slomo) 2014-05-19 08:25:14 UTC
Also not a problem if you have installed cmake from binaries as the docs.gstreamer.com documentation still says ;)
Comment 2 Edward Hervey 2014-05-19 08:32:01 UTC
Might be good to add a check for that then :) If cmake isn't around => error out ?
Comment 3 Andoni Morales 2014-05-19 08:42:26 UTC
Building CMAKE from scratch is overkill to be honest :) We might just download the prebuilt binaries and untar them as there is no other reason for building from source in this case.
Comment 4 Edward Hervey 2014-05-22 14:27:41 UTC
commit eb80fa828eece8580c1bbb7a75a42b8b5e17f025
Author: Edward Hervey <bilboed@bilboed.com>
Date:   Wed May 21 16:23:18 2014 +0200

    bootstrap: Use cmake binaries on windows/osx
    
    And update the README for the various requirements. Some URI have
    changed since the last time it was updated.