From 2ae4c62a414664ef1323f8dc485c26eda4406fdf Mon Sep 17 00:00:00 2001 From: "gregory.hainaut" Date: Tue, 5 Mar 2013 12:38:22 +0000 Subject: [PATCH] cmake: update wx-config option order for fedora git-svn-id: http://pcsx2.googlecode.com/svn/trunk@5581 96395faa-99c1-11dd-bbfe-3dabce05a288 --- cmake/SearchForStuff.cmake | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cmake/SearchForStuff.cmake b/cmake/SearchForStuff.cmake index e96395fee4..a39d1858f2 100644 --- a/cmake/SearchForStuff.cmake +++ b/cmake/SearchForStuff.cmake @@ -40,9 +40,9 @@ find_package(Subversion) # Warning do not put any double-quote for the argument... # set(wxWidgets_CONFIG_OPTIONS --unicode=yes --debug=yes) # In case someone want to debug inside wx # -# Fedora uses an extra non-standard option ... +# Fedora uses an extra non-standard option ... Arch must be the first option. if(Fedora) - set(wxWidgets_CONFIG_OPTIONS --unicode=yes --arch i686) + set(wxWidgets_CONFIG_OPTIONS --arch i686 --unicode=yes) else() set(wxWidgets_CONFIG_OPTIONS --unicode=yes) endif()