Skip to content

Commit 9799f3c

Browse files
authored
Fix Carla detection in AppImage launcher script
Fixes a typo which hardcodes Carla path at the packaging time.
1 parent a2685c1 commit 9799f3c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cmake/linux/package_linux.sh.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ cat >"${APPDIR}usr/bin/lmms" <<EOL
9898
#!/usr/bin/env bash
9999
DIR="\$( cd "\$( dirname "\${BASH_SOURCE[0]}" )" && pwd )"
100100
if which carla > /dev/null 2>&1; then
101-
CARLAPATH="$(which carla)"
101+
CARLAPATH="\$(which carla)"
102102
CARLAPREFIX="\${CARLAPATH%/bin*}"
103103
echo "Carla appears to be installed on this system at \$CARLAPREFIX/lib[64]/carla so we'll use it."
104104
export LD_LIBRARY_PATH=\$CARLAPREFIX/lib/carla:\$CARLAPREFIX/lib64/carla:\$LD_LIBRARY_PATH

0 commit comments

Comments
 (0)