From aa32785665fa4f3b2315176f07b1049342db640c Mon Sep 17 00:00:00 2001 From: Erik van Pienbroek Date: Nov 22 2011 22:52:28 +0000 Subject: Fixed a small regression introduced by the previous release Fixed a small regression introduced by the previous release which caused an FTBFS for mingw32-matahari as indicated on the fedora-mingw mailing list --- diff --git a/Toolchain-mingw32.cmake b/Toolchain-mingw32.cmake index 8b94488..9a575d0 100644 --- a/Toolchain-mingw32.cmake +++ b/Toolchain-mingw32.cmake @@ -26,6 +26,6 @@ SET(Boost_COMPILER -gcc46) # These are needed for compiling lapack (RHBZ #753906) SET(CMAKE_Fortran_COMPILER /usr/bin/i686-pc-mingw32-gfortran) -SET(CMAKE_AR /usr/bin/i686-pc-mingw32-ar) -SET(CMAKE_RANLIB /usr/bin/i686-pc-mingw32-ranlib) +SET(CMAKE_AR:FILEPATH /usr/bin/i686-pc-mingw32-ar) +SET(CMAKE_RANLIB:FILEPATH /usr/bin/i686-pc-mingw32-ranlib) diff --git a/mingw32-filesystem.spec b/mingw32-filesystem.spec index 62dd72f..3773eb9 100644 --- a/mingw32-filesystem.spec +++ b/mingw32-filesystem.spec @@ -2,7 +2,7 @@ Name: mingw32-filesystem Version: 69 -Release: 9%{?dist} +Release: 10%{?dist} Summary: MinGW base filesystem and environment Group: Development/Libraries @@ -191,6 +191,10 @@ install -m 644 %{SOURCE8} $RPM_BUILD_ROOT%{_datadir}/mingw32 %changelog +* Tue Nov 22 2011 Erik van Pienbroek - 69-10 +- Fixed a small regression introduced by the previous release which caused an + FTBFS for mingw32-matahari as indicated on the fedora-mingw mailing list + * Wed Nov 16 2011 Erik van Pienbroek - 69-9 - Added various definitions to the CMake toolchain file (RHBZ #753906)