Skip to content

Commit

Permalink
Merge pull request #1 from FluidSynth/master
Browse files Browse the repository at this point in the history
Fix incorrect way of turning CMAKE_INSTALL_LIBDIR absolute (FluidSynth#1261)
  • Loading branch information
mikelow authored Jul 13, 2023
2 parents a85aa98 + 5a12a58 commit 528becf
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -392,8 +392,7 @@ unset ( DARWIN CACHE )
unset ( MACOSX_FRAMEWORK CACHE )
if ( CMAKE_SYSTEM MATCHES "Darwin" )
set ( DARWIN 1 )
set ( CMAKE_INSTALL_NAME_DIR
${CMAKE_INSTALL_PREFIX}/${CMAKE_INSTALL_LIBDIR} )
set ( CMAKE_INSTALL_NAME_DIR ${CMAKE_INSTALL_FULL_LIBDIR} )
if ( enable-coreaudio )
check_include_file ( CoreAudio/AudioHardware.h COREAUDIO_FOUND )
if ( COREAUDIO_FOUND )
Expand Down

0 comments on commit 528becf

Please # to comment.