https://github.com/Kitware/CMake
Revision e422f738e4eb27dbf24a0b45d56e0f21a1d45cbc authored by Christian Askeland on 11 February 2016, 13:15:06 UTC, committed by Brad King on 11 February 2016, 13:49:06 UTC
The specific cause is when e.g.

    /Library/Frameworks/GStreamer.framework/Versions/1.0/lib/libgio-2.0.0.dylib

is detected by fixup_bundle.  set_bundle_key_values() interprets this as
a framework, thus doing a string replace that creates an embedded_item
that is equal to the original path, i.e. it is not embedded.
1 parent d83abbf
Raw File
Tip revision: e422f738e4eb27dbf24a0b45d56e0f21a1d45cbc authored by Christian Askeland on 11 February 2016, 13:15:06 UTC
BundleUtilities: Fix treatment of .dylib inside .framework folders
Tip revision: e422f73
.hooks-config.bash
#=============================================================================
# CMake - Cross Platform Makefile Generator
# Copyright 2000-2011 Kitware, Inc., Insight Software Consortium
#
# Distributed under the OSI-approved BSD License (the "License");
# see accompanying file Copyright.txt for details.
#
# This software is distributed WITHOUT ANY WARRANTY; without even the
# implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
# See the License for more information.
#=============================================================================

# Loaded by .git/hooks/(pre-commit|commit-msg|prepare-commit-msg)
# during git commit after local hooks have been installed.

hooks_chain_pre_commit="Utilities/Git/pre-commit"
hooks_chain_commit_msg="Utilities/Git/commit-msg"
hooks_chain_prepare_commit_msg="Utilities/Git/prepare-commit-msg"
back to top