From 1d5cb4150e243ef9ded5d2288da40543b47c94a9 Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Wed, 28 Oct 2020 05:52:54 +0100 Subject: [PATCH] Fix LV2 ontology install path for OSX bundles --- tools/osx_packaging/osx_build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/osx_packaging/osx_build b/tools/osx_packaging/osx_build index cc6d11bf2b..0a9de6c462 100755 --- a/tools/osx_packaging/osx_build +++ b/tools/osx_packaging/osx_build @@ -527,7 +527,7 @@ cp -R $BUILD_ROOT/libs/LV2 $Frameworks/ for file in $GTKSTACK_ROOT/lib/lv2/*.lv2; do BN=$(basename $file) mkdir -p $APPLIB/LV2/$BN - cp $GTKSTACK_ROOT/lib/lv2/${BN}/*.ttl $APPLIB/LV2/${BN}/ + cp $GTKSTACK_ROOT/lib/lv2/${BN}/*.ttl $Frameworks/LV2/${BN}/ done