commit aa32785665fa4f3b2315176f07b1049342db640c
Author: Erik van Pienbroek <epienbro(a)fedoraproject.org>
Date: Tue Nov 22 23:52:28 2011 +0100
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
Toolchain-mingw32.cmake | 4 ++--
mingw32-filesystem.spec | 6 +++++-
2 files changed, 7 insertions(+), 3 deletions(-)
---
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 <epienbro(a)fedoraproject.org> - 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 <epienbro(a)fedoraproject.org> - 69-9
- Added various definitions to the CMake toolchain file (RHBZ #753906)