Fix RPM macro clang_resource_dir

This commit is contained in:
Tulio Magno Quites Machado Filho 2023-03-14 17:10:39 -03:00
parent 1bafe64a40
commit 4cb2bd60c5
2 changed files with 5 additions and 2 deletions

View File

@ -42,7 +42,7 @@
Name: %pkg_name Name: %pkg_name
Version: %{clang_version}%{?rc_ver:~rc%{rc_ver}} Version: %{clang_version}%{?rc_ver:~rc%{rc_ver}}
Release: 1%{?dist} Release: 2%{?dist}
Summary: A C language family front-end for LLVM Summary: A C language family front-end for LLVM
License: Apache-2.0 WITH LLVM-exception OR NCSA License: Apache-2.0 WITH LLVM-exception OR NCSA
@ -611,6 +611,9 @@ false
%endif %endif
%changelog %changelog
* Tue Mar 14 2023 Tulio Magno Quites Machado Filho <tuliom@redhat.com> - 16.0.0~rc3-2
- Fix RPM macro clang_resource_dir
* Thu Feb 23 2023 Tulio Magno Quites Machado Filho <tuliom@redhat.com> - 16.0.0~rc3-1 * Thu Feb 23 2023 Tulio Magno Quites Machado Filho <tuliom@redhat.com> - 16.0.0~rc3-1
- Update to LLVM 16.0.0 RC3 - Update to LLVM 16.0.0 RC3

View File

@ -8,7 +8,7 @@
# headers and libraries. This path should be used by packages that need to # headers and libraries. This path should be used by packages that need to
# install files into this directory. This macro's value changes every time # install files into this directory. This macro's value changes every time
# clang's version changes. # clang's version changes.
%clang_resource_dir %{_libdir}/clang/%{clang_version} %clang_resource_dir %{_libdir}/clang/%{clang_major_version}
# This is the path to the clang resource directory that should be used # This is the path to the clang resource directory that should be used
# by packages that need to read files from this directory at runtime. # by packages that need to read files from this directory at runtime.