From a91e9c2d52e85ae3c649890ffd4ec3c12e8488c6 Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Fri, 18 Sep 2020 21:44:34 +0200 Subject: [PATCH] Fix windows plugin install location --- tools/x-win/package.sh | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/tools/x-win/package.sh b/tools/x-win/package.sh index 484a9e7766..ba92b1847e 100755 --- a/tools/x-win/package.sh +++ b/tools/x-win/package.sh @@ -464,17 +464,19 @@ fi if test x$WITH_HARRISON_LV2 != x ; then if test -n "$MIXBUS"; then cat >> $NSISFILE << EOF -Section "Harrison XT plugins and a-/ACE plugin GUIs\$\\r\$\\n" SecXT +Section "Harrison XT plugins (required)" SecXT SectionIn RO - SetOutPath \$INSTDIR\\lib\\${LOWERCASE_DIRNAME} - File /r LV2 + SetOutPath \$INSTDIR\\lib\\${LOWERCASE_DIRNAME}\\LV2 + File LV2\\.harrison_version.txt + File /r LV2\\*.lv2 SectionEnd EOF else cat >> $NSISFILE << EOF -Section "Harrison XT-plugins" SecXT - SetOutPath \$INSTDIR\\lib\\${LOWERCASE_DIRNAME} - File /r LV2 +Section "Harrison XT plugins and a-/ACE plugin GUIs" SecXT + SetOutPath \$INSTDIR\\lib\\${LOWERCASE_DIRNAME}\\LV2 + File LV2\\.harrison_version.txt + File /r LV2\\*.lv2 SectionEnd EOF fi