Skip to content

Commit

Permalink
Fix python print statement for python 3 in cmake/MacBundleMacros.cmake (
Browse files Browse the repository at this point in the history
  • Loading branch information
dmarteau authored and m-kuhn committed Sep 27, 2016
1 parent d521f18 commit 47c3726
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmake/MacBundleMacros.cmake
Expand Up @@ -72,7 +72,7 @@ FUNCTION (COPY_FRAMEWORK FWPREFIX FWNAME FWDEST)
# find current version
# use python because pwd not working with WORKING_DIRECTORY param
EXECUTE_PROCESS (
COMMAND python -c "import os.path\nprint os.path.realpath(\"${FWPREFIX}/${FWNAME}.framework/Versions/Current\")"
COMMAND python -c "import os.path\nprint(os.path.realpath(\"${FWPREFIX}/${FWNAME}.framework/Versions/Current\"))"
OUTPUT_VARIABLE FWDIRPHYS
)
STRING (STRIP "${FWDIRPHYS}" FWDIRPHYS)
Expand Down

0 comments on commit 47c3726

Please sign in to comment.