Don't use verbose output by default in the CMake wrapper scripts

This commit is contained in:
Erik van Pienbroek 2015-04-10 20:48:34 +02:00
parent 6e3f91139b
commit f185f58985
2 changed files with 3 additions and 1 deletions

View File

@ -322,6 +322,8 @@ install -m 0644 %{SOURCE12} $RPM_BUILD_ROOT%{_datadir}/mingw/
* Removed the rpath references as mingw doesn't support rpath * Removed the rpath references as mingw doesn't support rpath
* Allow verbose CMake output to be disabled by setting the * Allow verbose CMake output to be disabled by setting the
environment variable MINGW_CMAKE_NO_VERBOSE (RHBZ #987644) environment variable MINGW_CMAKE_NO_VERBOSE (RHBZ #987644)
* When calling the mingw32-cmake and mingw64-cmake wrapper
scripts don't use verbose CMake output by default
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> * Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org>
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild

View File

@ -33,4 +33,4 @@ fi
# NOTE: The use of 'eval' in combination with '$@' is a potential security risk # NOTE: The use of 'eval' in combination with '$@' is a potential security risk
# We should find a more safe replacement for this command # We should find a more safe replacement for this command
# Suggestions are welcome at the Fedora MinGW mailing list # Suggestions are welcome at the Fedora MinGW mailing list
eval "`rpm --eval "%{$NAME}"`" '"$@"' eval "MINGW_CMAKE_NO_VERBOSE=1 `rpm --eval "%{$NAME}"`" '"$@"'