Skip to content

Commit

Permalink
fix #270691: New Soundfont is not picked up during install phase, the…
Browse files Browse the repository at this point in the history
… old one from the code is used instead
  • Loading branch information
lasconic committed Mar 25, 2018
1 parent 58e9343 commit 63d19c2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions share/sound/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
#=============================================================================

if (NOT EXISTS MuseScore_General.sf3)
if (NOT EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/MuseScore_General.sf3)
install (FILES FluidR3Mono_GM.sf3
DESTINATION ${Mscore_SHARE_NAME}${Mscore_INSTALL_NAME}sound
RENAME MuseScore_General.sf3
Expand All @@ -30,7 +30,7 @@ else ()
)
endif ()

if (NOT EXISTS MuseScore_General-License.md)
if (NOT EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/MuseScore_General-License.md)
install (FILES FluidR3Mono_License.md
DESTINATION ${Mscore_SHARE_NAME}${Mscore_INSTALL_NAME}sound
RENAME MuseScore_General-License.md)
Expand Down

0 comments on commit 63d19c2

Please sign in to comment.