From 1279244e506519714aa1bb542aa4bace02c01306 Mon Sep 17 00:00:00 2001 From: tresf Date: Mon, 18 Dec 2017 18:55:51 -0500 Subject: [PATCH] Add $HOME/bin to PATH Circumvent change in appimagetool, per AppImage/AppImageKit#592 --- cmake/linux/package_linux.sh.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmake/linux/package_linux.sh.in b/cmake/linux/package_linux.sh.in index 8553be65ffc..7f500e6135e 100644 --- a/cmake/linux/package_linux.sh.in +++ b/cmake/linux/package_linux.sh.in @@ -54,7 +54,7 @@ fi echo -e "\nWriting verbose output to \"${LOGFILE}\"" # Ensure linuxdeployqt uses the same qmake version as cmake -export PATH="$(dirname "@QT_QMAKE_EXECUTABLE@")":$PATH +export PATH="$HOME/bin:$(dirname "@QT_QMAKE_EXECUTABLE@")":$PATH # Fetch portable linuxdeployqt if cache is older than $DAYSOLD echo -e "\nDownloading linuxdeployqt to ${LINUXDEPLOYQT}..."