summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTreeve Jelbert2013-09-22 15:55:34 +0200
committerTreeve Jelbert2013-09-22 15:55:34 +0200
commit7aacd6d4e702cc009fe63aaa5921c396579ee650 (patch)
treef15797e371015ee4d0027a2c3f58b0bee75be61a
parentfbb7aab59897bcc34788b8e9fce4f7b0dcbfbbd7 (diff)
FUNCTIONS - fix qt5_build
-rw-r--r--ChangeLog1
-rwxr-xr-xFUNCTIONS2
2 files changed, 2 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 01ea21b02a..1f0efc2bbb 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,7 @@
2013-09-22 Treeve Jelbert <treeve@sourcemage.org>
* python-pypi/kinterbasdb: spell deprecated [replaced by fdb]
* devel/qxorm: new spell, ORM library for Qt/Boost
+ * FUNCTIONS: fix qt5_build
2013-09-17 Eric Sandall <sandalle@sourcemage.org>
* redhat.gpg: Add E1B768A0 for libguestfs and supermin from Red Hat
diff --git a/FUNCTIONS b/FUNCTIONS
index 2ab884bbb5..1d5dbf7db7 100755
--- a/FUNCTIONS
+++ b/FUNCTIONS
@@ -9,7 +9,7 @@ qt5_build() {
QMAKEPATH="$QT5DIR/bin"
# in some cases, we set a symlink to python in the source directory
PATH="$QMAKEPATH:$SOURCE_DIRECTORY:$PATH"
- qmake $OPTS *.pro &&
+ qmake PREFIX=$QT5DIR $OPTS *.pro &&
make
}