2009-04-08 13:11:27 +00:00
|
|
|
#!/bin/sh -
|
|
|
|
|
|
|
|
# mingw64-scripts
|
|
|
|
# Copyright (C) 2008 Red Hat Inc., Richard W.M. Jones.
|
|
|
|
# Copyright (C) 2008 Levente Farkas
|
2023-03-15 21:41:19 +00:00
|
|
|
# Copyright (C) 2023 Ralf Habacker
|
2009-04-08 13:11:27 +00:00
|
|
|
#
|
|
|
|
# This program is free software; you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation; either version 2 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program; if not, write to the Free Software
|
2014-06-04 16:03:59 +00:00
|
|
|
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
|
|
|
|
# MA 02110-1301 USA.
|
2009-04-08 13:11:27 +00:00
|
|
|
|
|
|
|
# This is a useful command-line script through which one can use the
|
2023-03-15 21:41:19 +00:00
|
|
|
# macros from mingw64-macros.mingw64 cross-compilation.
|
|
|
|
#
|
|
|
|
# It supports the environment variable MINGW64_MACROS=<value> to be
|
|
|
|
# able to override individual rpm macros. With
|
|
|
|
#
|
|
|
|
# MINGW64_MACROS='__cmake ~/bin/cmake' mingw64-cmake
|
|
|
|
#
|
|
|
|
# for example, the specified cmake executable is used instead of
|
|
|
|
# the internal default.
|
2009-04-08 13:11:27 +00:00
|
|
|
|
|
|
|
NAME="_`basename $0|tr -- - _`"
|
2023-06-16 20:27:14 +00:00
|
|
|
if [ "${MINGW64_MACROS+1}" ]; then
|
|
|
|
eval "`rpm --define="${MINGW64_MACROS}" --eval "%${NAME} $(printf " %q" "${@}")"`"
|
|
|
|
else
|
|
|
|
eval "`rpm --eval "%${NAME} $(printf " %q" "${@}")"`"
|
|
|
|
fi
|