diff options
Diffstat (limited to 'testing/source/vtown/deps/qt5/profile.d/qt5.sh')
-rw-r--r-- | testing/source/vtown/deps/qt5/profile.d/qt5.sh | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/testing/source/vtown/deps/qt5/profile.d/qt5.sh b/testing/source/vtown/deps/qt5/profile.d/qt5.sh new file mode 100644 index 00000000..8ee075e1 --- /dev/null +++ b/testing/source/vtown/deps/qt5/profile.d/qt5.sh @@ -0,0 +1,17 @@ +#!/bin/sh +# Environment variables for the Qt package. +# +# It's best to use the generic directory to avoid +# compiling in a version-containing path: +if [ -d /usr/lib@LIBDIRSUFFIX@/qt5 ]; then + QT5DIR=/usr/lib@LIBDIRSUFFIX@/qt5 +else + # Find the newest Qt directory and set $QT5DIR to that: + for qtd in /usr/lib@LIBDIRSUFFIX@/qt5-* ; do + if [ -d $qtd ]; then + QT5DIR=$qtd + fi + done +fi +PATH="$PATH:$QT5DIR/bin" +export QT5DIR |