Use %%set_build_flags to export build flags if available
This commit is contained in:
parent
f48eae3697
commit
062da0a4bf
13
cmake.spec
13
cmake.spec
@ -270,9 +270,15 @@ tail -n +2 %{SOURCE5} >> %{name}.req
|
|||||||
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
export CFLAGS="%{optflags}"
|
%if 0%{?set_build_flags:1}
|
||||||
export CXXFLAGS="%{optflags}"
|
%{set_build_flags}
|
||||||
export LDFLAGS="%{?__global_ldflags}"
|
%else
|
||||||
|
CFLAGS="${CFLAGS:-%optflags}" ; export CFLAGS
|
||||||
|
CXXFLAGS="${CXXFLAGS:-%optflags}" ; export CXXFLAGS
|
||||||
|
FFLAGS="${FFLAGS:-%optflags%{?_fmoddir: -I%_fmoddir}}" ; export FFLAGS
|
||||||
|
FCFLAGS="${FCFLAGS:-%optflags%{?_fmoddir: -I%_fmoddir}}" ; export FCFLAGS
|
||||||
|
%{?__global_ldflags:LDFLAGS="${LDFLAGS:-%__global_ldflags}" ; export LDFLAGS ;}
|
||||||
|
%endif
|
||||||
SRCDIR="$(/usr/bin/pwd)"
|
SRCDIR="$(/usr/bin/pwd)"
|
||||||
mkdir %{_vpath_builddir}
|
mkdir %{_vpath_builddir}
|
||||||
pushd %{_vpath_builddir}
|
pushd %{_vpath_builddir}
|
||||||
@ -489,6 +495,7 @@ mv -f Modules/FindLibArchive.disabled Modules/FindLibArchive.cmake
|
|||||||
* Wed Jan 15 2020 Björn Esser <besser82@fedoraproject.org> - 3.16.2-1
|
* Wed Jan 15 2020 Björn Esser <besser82@fedoraproject.org> - 3.16.2-1
|
||||||
- Update to 3.16.2
|
- Update to 3.16.2
|
||||||
- Use %%_vpath_builddir for out-of-tree build
|
- Use %%_vpath_builddir for out-of-tree build
|
||||||
|
- Use %%set_build_flags to export build flags if available
|
||||||
|
|
||||||
* Tue Jan 14 2020 Miro Hrončok <mhroncok@redhat.com> - 3.16.1-2
|
* Tue Jan 14 2020 Miro Hrončok <mhroncok@redhat.com> - 3.16.1-2
|
||||||
- FindPython: Add support for version 3.9
|
- FindPython: Add support for version 3.9
|
||||||
|
Loading…
Reference in New Issue
Block a user