From 9f826ec1ad8361f68f1e63b52ef34f410347c0fd Mon Sep 17 00:00:00 2001 From: itsmattkc Date: Thu, 12 Sep 2019 11:51:48 +1000 Subject: [PATCH] cmake uses DESTDIR instead of qmake's INSTALL_ROOT --- .travis/script.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis/script.sh b/.travis/script.sh index 684d4cb77..0cc932ac4 100644 --- a/.travis/script.sh +++ b/.travis/script.sh @@ -31,7 +31,7 @@ elif [[ "$TRAVIS_OS_NAME" == "linux" ]]; then make -j$(nproc) # Use `make install` on `appdir` to place files in the correct place - make INSTALL_ROOT=appdir -j$(nproc) install ; find appdir/ + make DESTDIR=appdir -j$(nproc) install ; find appdir/ # Download linuxdeployqt wget -c -nv "https://github.com/probonopd/linuxdeployqt/releases/download/continuous/linuxdeployqt-continuous-x86_64.AppImage"