mirror of
https://src.fedoraproject.org/rpms/llvm.git
synced 2024-11-28 10:35:42 +00:00
Fix ninja check
This commit is contained in:
parent
dd29ab70a3
commit
2b03740f59
1 changed files with 8 additions and 2 deletions
10
llvm.spec
10
llvm.spec
|
@ -40,7 +40,7 @@
|
||||||
|
|
||||||
Name: %{pkg_name}
|
Name: %{pkg_name}
|
||||||
Version: %{maj_ver}.%{min_ver}.%{patch_ver}
|
Version: %{maj_ver}.%{min_ver}.%{patch_ver}
|
||||||
Release: 2%{?rc_ver:.rc%{rc_ver}}%{?dist}
|
Release: 3%{?rc_ver:.rc%{rc_ver}}%{?dist}
|
||||||
Summary: The Low Level Virtual Machine
|
Summary: The Low Level Virtual Machine
|
||||||
|
|
||||||
License: NCSA
|
License: NCSA
|
||||||
|
@ -338,7 +338,10 @@ rm -Rf %{build_install_prefix}/share/opt-viewer
|
||||||
|
|
||||||
|
|
||||||
%check
|
%check
|
||||||
ninja check-all -C _build || :
|
# We have disabled rpath, so we need to add the build's library directory
|
||||||
|
# to LD_LIBRARY_PATH.
|
||||||
|
LD_LIBRARY_PATH=`pwd`/_build/%{_lib}:$LD_LIBRARY_PATH \
|
||||||
|
ninja check-all -C _build || :
|
||||||
|
|
||||||
%ldconfig_scriptlets libs
|
%ldconfig_scriptlets libs
|
||||||
|
|
||||||
|
@ -451,6 +454,9 @@ fi
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Tue Mar 26 2019 Tom Stellard <tstellar@redhat.com> - 8.0.0-3
|
||||||
|
- Fix ninja check
|
||||||
|
|
||||||
* Fri Mar 22 2019 Tom Stellard <tstellar@redhat.com> - 8.0.0-2
|
* Fri Mar 22 2019 Tom Stellard <tstellar@redhat.com> - 8.0.0-2
|
||||||
- llvm-test fixes
|
- llvm-test fixes
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue