fix bindir symlinks which should point to /usr/%{lib}/qt6/libexec instead of bin [release 6.6.2-2mamba;Fri Mar 08 2024]
This commit is contained in:
parent
f5ee28608c
commit
0d1a949a1b
@ -18,7 +18,7 @@
|
||||
|
||||
Name: qt6-qtbase
|
||||
Version: 6.6.2
|
||||
Release: 1mamba
|
||||
Release: 2mamba
|
||||
Summary: A multiplatform, C++ GUI application development framework
|
||||
Group: System/Libraries
|
||||
Vendor: openmamba
|
||||
@ -408,14 +408,18 @@ install -D -m644 %{S:12} \
|
||||
%if "%{_qt6_bindir}" != "%{_bindir}"
|
||||
install -d %{buildroot}%{_bindir}
|
||||
pushd %{buildroot}%{_qt6_bindir}
|
||||
for f in androiddeployqt androidtestrunner qt-cmake; do
|
||||
for f in androiddeployqt qt-cmake; do
|
||||
ln -sf ./%{_lib}/qt6/bin/$f %{buildroot}%{_bindir}/${f}
|
||||
ln -sf ../%{_lib}/qt6/bin/$f %{buildroot}%{_bindir}/${f}-qt6
|
||||
done
|
||||
for f in moc qdbuscpp2xml qdbusxml2cpp qlalr qmake qvkgen rcc tracegen uic; do
|
||||
for f in qdbuscpp2xml qdbusxml2cpp qmake; do
|
||||
#ln -sf ./%{_lib}/qt6/bin/$f %{buildroot}%{_bindir}/${f}
|
||||
ln -sf ../%{_lib}/qt6/bin/$f %{buildroot}%{_bindir}/${f}-qt6
|
||||
done
|
||||
for f in moc qlalr qvkgen rcc tracegen uic; do
|
||||
#ln -sf ./%{_lib}/qt6/bin/$f %{buildroot}%{_bindir}/${f}
|
||||
ln -sf ../%{_lib}/qt6/libexec/$f %{buildroot}%{_bindir}/${f}-qt6
|
||||
done
|
||||
popd
|
||||
%endif
|
||||
|
||||
@ -586,7 +590,6 @@ echo "\
|
||||
%defattr(-,root,root)
|
||||
%{_rpmmacrodir}/macros.qt6
|
||||
%{_bindir}/androiddeployqt*
|
||||
%{_bindir}/androidtestrunner*
|
||||
%{_bindir}/moc*
|
||||
%{_bindir}/qmake*
|
||||
%{_bindir}/qlalr*
|
||||
@ -643,6 +646,9 @@ echo "\
|
||||
%{_qt6_plugindir}/sqldrivers/libqsqlite.so
|
||||
|
||||
%changelog
|
||||
* Fri Mar 08 2024 Silvan Calarco <silvan.calarco@mambasoft.it> 6.6.2-2mamba
|
||||
- fix bindir symlinks which should point to /usr/%{lib}/qt6/libexec instead of bin
|
||||
|
||||
* Wed Feb 14 2024 Automatic Build System <autodist@openmamba.org> 6.6.2-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user