mirror of
https://src.fedoraproject.org/rpms/llvm.git
synced 2024-11-25 01:35:17 +00:00
Fix py_byte_compile invocation
This commit is contained in:
parent
a3e4502e5e
commit
a0cb14e0da
1 changed files with 3 additions and 1 deletions
|
@ -137,7 +137,9 @@ install -p -m644 clang/bindings/python/clang/* %{buildroot}%{python3_sitelib}/cl
|
||||||
|
|
||||||
# install scanbuild-py to python sitelib.
|
# install scanbuild-py to python sitelib.
|
||||||
mv %{buildroot}%{_prefix}/%{_lib}/{libear,libscanbuild} %{buildroot}%{python3_sitelib}
|
mv %{buildroot}%{_prefix}/%{_lib}/{libear,libscanbuild} %{buildroot}%{python3_sitelib}
|
||||||
%py_byte_compile %{__python3} %{buildroot}%{python3_sitelib}/{libear,libscanbuild}
|
# Cannot use {libear,libscanbuild} style expansion in py_byte_compile.
|
||||||
|
%py_byte_compile %{__python3} %{buildroot}%{python3_sitelib}/libear
|
||||||
|
%py_byte_compile %{__python3} %{buildroot}%{python3_sitelib}/libscanbuild
|
||||||
|
|
||||||
# Fix permissions of scan-view scripts
|
# Fix permissions of scan-view scripts
|
||||||
chmod a+x %{buildroot}%{_datadir}/scan-view/{Reporter.py,startfile.py}
|
chmod a+x %{buildroot}%{_datadir}/scan-view/{Reporter.py,startfile.py}
|
||||||
|
|
Loading…
Reference in a new issue