Skip to content

Commit

Permalink
Fix path to the LMMS binary in AppImage build script
Browse files Browse the repository at this point in the history
  • Loading branch information
PhysSong committed Feb 19, 2019
1 parent 55eb831 commit 18d4787
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmake/linux/package_linux.sh.in
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ if [ -e "${APPDIR}/usr/lib/libjack.so.0" ]; then
fi

# Bundle jack out of LD_LIBRARY_PATH
JACK_LIB=$(ldd "${APPDIR}/usr/bin/lmms" | sed -n 's/\tlibjack\.so\.0 => \(.\+\) (0x[0-9a-f]\+)/\1/p')
JACK_LIB=$(ldd "${APPDIR}/usr/bin/lmms.real" | sed -n 's/\tlibjack\.so\.0 => \(.\+\) (0x[0-9a-f]\+)/\1/p')
if [ -e "$JACK_LIB" ]; then
mkdir -p "${APPDIR}usr/lib/lmms/optional/"
cp "$JACK_LIB" "${APPDIR}usr/lib/lmms/optional/"
Expand Down

0 comments on commit 18d4787

Please sign in to comment.