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

Steve Lhomme git at videolan.org
Wed Dec 7 22:55:04 CET 2016


vlc | branch: master | Steve Lhomme <robUx4 at videolabs.io> | Tue Dec  6 16:47:30 2016 +0100| [a679d56cb596b2ee5e271ec8f9f7f937b2fff652] | committer: Jean-Baptiste Kempf

configure: double quote the path to find rcc

It's already done for the other and fails with the contribs on Msys2

Signed-off-by: Jean-Baptiste Kempf <jb at videolan.org>

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=a679d56cb596b2ee5e271ec8f9f7f937b2fff652
---

 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"])
     ])
 ])



More information about the vlc-commits mailing list