svn commit: r432052 - head/multimedia/qt4-mobility

Tobias C. Berner tcberner at FreeBSD.org
Sat Jan 21 15:48:16 UTC 2017


Author: tcberner
Date: Sat Jan 21 15:48:15 2017
New Revision: 432052
URL: https://svnweb.freebsd.org/changeset/ports/432052

Log:
  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)

Modified:
  head/multimedia/qt4-mobility/Makefile

Modified: head/multimedia/qt4-mobility/Makefile
==============================================================================
--- head/multimedia/qt4-mobility/Makefile	Sat Jan 21 15:33:18 2017	(r432051)
+++ head/multimedia/qt4-mobility/Makefile	Sat Jan 21 15:48:15 2017	(r432052)
@@ -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} \


More information about the svn-ports-all mailing list