Hi,

Tanguy and I patched the OWLocaleUpdate cmake file to have the arguments
before the name of the .pro file on the 2.1 branch (since on Linux and
mac, they must come first - while I was at it, I also print the lupdate
binary that we're calling, to ensure we're not accidentally picking up
the qt3 version.

Diff attached.

Cheers,
Dave.

-- 
Dave Neary
OpenWengo Community Development Manager
Email: [EMAIL PROTECTED]
Index: owbuild/OWLocaleUpdate.cmake
===================================================================
--- owbuild/OWLocaleUpdate.cmake	(revision 10577)
+++ owbuild/OWLocaleUpdate.cmake	(working copy)
@@ -189,14 +189,14 @@
 			"[HKEY_CURRENT_USER\\Software\\Trolltech\\Versions\\4.0.0;InstallDir]/bin"
 	)
 
-	message(STATUS "lupdate .ts")
+	message(STATUS "${QT_LUPDATE_EXECUTABLE} .ts")
 
 	execute_process(
 		COMMAND
 			${QT_LUPDATE_EXECUTABLE}
-			${proFile}
 			-noobsolete
 			-verbose
+			${proFile}
 		WORKING_DIRECTORY
 			${CMAKE_CURRENT_SOURCE_DIR}
 	)
_______________________________________________
Wengophone-devel mailing list
[email protected]
http://dev.openwengo.com/mailman/listinfo/wengophone-devel

Reply via email to