osbuild.spec: actually install runners symlinks
The Fedora 31 and Fedora 32 runners are symlinks but the spec file
only looked for files and not symlinks. Fix that.
Follow up by 6a14ba40f7. Found by
Lars.
This commit is contained in:
parent
eab3414f00
commit
e7b989a08d
1 changed files with 1 additions and 1 deletions
|
|
@ -55,7 +55,7 @@ mkdir -p %{buildroot}%{pkgdir}/assemblers
|
|||
install -p -m 0755 $(find assemblers -type f) %{buildroot}%{pkgdir}/assemblers/
|
||||
|
||||
mkdir -p %{buildroot}%{pkgdir}/runners
|
||||
install -p -m 0755 $(find runners -type f) %{buildroot}%{pkgdir}/runners
|
||||
install -p -m 0755 $(find runners -type f -or -type l) %{buildroot}%{pkgdir}/runners
|
||||
|
||||
mkdir -p %{buildroot}%{pkgdir}/sources
|
||||
install -p -m 0755 $(find sources -type f) %{buildroot}%{pkgdir}/sources
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue