Add build_ prefix to cc, cxx, and cpp macros

RPM requires macros to be at least 3 characters, so we need to
rename the cc macro anyway and using the build_ prefix is consistent
with other macros like build_cflags.
This commit is contained in:
Tom Stellard 2021-08-17 21:14:52 +00:00
parent 73aefaaac7
commit 3ec329b234
2 changed files with 7 additions and 4 deletions

6
macros
View File

@ -68,9 +68,9 @@
# Compiler macros to use for invoking compilers in spec files for packages that # Compiler macros to use for invoking compilers in spec files for packages that
# want to use the default compiler and don't care which compiler that is. # want to use the default compiler and don't care which compiler that is.
%cc %{__cc} %build_cc %{__cc}
%cxx %{__cxx} %build_cxx %{__cxx}
%cpp %{__cpp} %build_cpp %{__cpp}
#============================================================================== #==============================================================================
# ---- compiler flags. # ---- compiler flags.

View File

@ -6,7 +6,7 @@
Summary: Red Hat specific rpm configuration files Summary: Red Hat specific rpm configuration files
Name: redhat-rpm-config Name: redhat-rpm-config
Version: 196 Version: 197
Release: 1%{?dist} Release: 1%{?dist}
# No version specified. # No version specified.
License: GPL+ License: GPL+
@ -215,6 +215,9 @@ install -p -m 644 -t %{buildroot}%{_rpmluadir}/fedora/srpm forge.lua
%{_rpmconfigdir}/macros.d/macros.kmp %{_rpmconfigdir}/macros.d/macros.kmp
%changelog %changelog
* Tue Aug 17 2021 Tom Stellard <tstellar@redhat.com> - 197-1
- Add build_ preifix to cc, cxx, and cpp macros
* Mon Aug 16 2021 Tom Stellard <tstellar@redhat.com> - 196-1 * Mon Aug 16 2021 Tom Stellard <tstellar@redhat.com> - 196-1
- Add cc, cxx, and cpp macros - Add cc, cxx, and cpp macros