diff options
author | tcberner <tcberner@FreeBSD.org> | 2017-01-21 23:48:15 +0800 |
---|---|---|
committer | tcberner <tcberner@FreeBSD.org> | 2017-01-21 23:48:15 +0800 |
commit | 7dd011a94cb8ae82e9f3199b6efa2c2a9410ac82 (patch) | |
tree | ceeb636b52445515f426437b094f73ae527ad881 /multimedia/qt4-mobility | |
parent | 8b6024f24be48225d44791ddade19088aa349d94 (diff) | |
download | freebsd-ports-gnome-7dd011a94cb8ae82e9f3199b6efa2c2a9410ac82.tar.gz freebsd-ports-gnome-7dd011a94cb8ae82e9f3199b6efa2c2a9410ac82.tar.zst freebsd-ports-gnome-7dd011a94cb8ae82e9f3199b6efa2c2a9410ac82.zip |
Pass CONFIGURE_ENV to the manual call to `configure'
qt4-mobility manually runs its configure script in pre-configure. However, it
does not source the contents of CONFIGURE_ENV into its environment.
In the near future however, CONFIGURE_ENV will be needed to run the proper
qmake4 resp qmake5 binary.
Approved by: rakuco (mentor)
Diffstat (limited to 'multimedia/qt4-mobility')
-rw-r--r-- | multimedia/qt4-mobility/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/multimedia/qt4-mobility/Makefile b/multimedia/qt4-mobility/Makefile index 38c17f741785..b8513d4a4d40 100644 --- a/multimedia/qt4-mobility/Makefile +++ b/multimedia/qt4-mobility/Makefile @@ -67,7 +67,7 @@ pre-configure: ${STAGE}${PREFIX}/${QT_LIBDIR_REL} \ ${STAEG}${PREFIX}/${QT_PLUGINDIR_REL} - cd ${WRKSRC} && ./configure \ + cd ${WRKSRC} && ${SETENV} ${CONFIGURE_ENV} ./configure \ -release \ -prefix ${STAGE}${PREFIX} \ -bindir ${STAGE}${PREFIX}/${QT_BINDIR_REL} \ |