Accepting request 1093499 from home:rhabacker:branches:windows:mingw:win64:cmake

- Update to 20230614
  * Fix unwanted dump of rpm option when using mingw64-* command
    line wrapper (boo#1212239)

OBS-URL: https://build.opensuse.org/request/show/1093499
OBS-URL: https://build.opensuse.org/package/show/windows:mingw:win64/mingw64-filesystem?expand=0&rev=161
This commit is contained in:
Ralf Habacker 2023-06-16 20:27:14 +00:00 committed by Git OBS Bridge
parent 0dad14cde8
commit 69f2a864b1
3 changed files with 13 additions and 3 deletions

View File

@ -1,3 +1,10 @@
-------------------------------------------------------------------
Mon Jun 12 13:16:04 UTC 2023 - Ralf Habacker <ralf.habacker@freenet.de>
- Update to 20230614
* Fix unwanted dump of rpm option when using mingw64-* command
line wrapper (boo#1212239)
-------------------------------------------------------------------
Tue Mar 28 04:05:34 UTC 2023 - Ralf Habacker <ralf.habacker@freenet.de>

View File

@ -31,7 +31,7 @@
%define _rpmmacrodir %{_sysconfdir}/rpm
%endif
Name: mingw64-filesystem
Version: 20230401
Version: 20230614
Release: 0
Summary: MinGW base filesystem and environment
License: GPL-2.0-or-later

View File

@ -32,5 +32,8 @@
# the internal default.
NAME="_`basename $0|tr -- - _`"
DEFINE=${MINGW64_MACROS:+--define="${MINGW64_MACROS}"}
eval "`rpm "${DEFINE}" --eval "%${NAME} $(printf " %q" "${@}")"`"
if [ "${MINGW64_MACROS+1}" ]; then
eval "`rpm --define="${MINGW64_MACROS}" --eval "%${NAME} $(printf " %q" "${@}")"`"
else
eval "`rpm --eval "%${NAME} $(printf " %q" "${@}")"`"
fi