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
This commit is contained in:
Erik van Pienbroek 2011-11-22 23:52:28 +01:00
parent f1b50411fb
commit aa32785665
2 changed files with 7 additions and 3 deletions

View File

@ -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)

View File

@ -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@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@fedoraproject.org> - 69-9
- Added various definitions to the CMake toolchain file (RHBZ #753906)