[vlc-devel] [PATCH] configure: double quote the path to find rcc

Steve Lhomme robux4 at videolabs.io
Tue Dec 6 16:47:30 CET 2016


It's already done for the other and fails with the contribs on Msys2
---
 configure.ac | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/configure.ac b/configure.ac
index 9015286..84d8e5e 100644
--- a/configure.ac
+++ b/configure.ac
@@ -3767,7 +3767,7 @@ AS_IF([test "${enable_qt}" != "no"], [
       ])
       QT_PATH="$(eval $PKG_CONFIG --variable=exec_prefix QtCore)"
       AC_PATH_PROGS(MOC, [moc-qt4 moc], moc, ["${QT_PATH}/bin"])
-      AC_PATH_PROG(RCC, rcc, rcc, [${QT_PATH}/bin])
+      AC_PATH_PROG(RCC, rcc, rcc, ["${QT_PATH}/bin"])
       AC_PATH_PROGS(UIC, [uic-qt4 uic], uic, ["${QT_PATH}/bin"])
     ])
 ])
-- 
2.10.1



More information about the vlc-devel mailing list