diff options
-rwxr-xr-x | getmock | 3 | ||||
-rwxr-xr-x | mkallrepo | 3 |
2 files changed, 5 insertions, 1 deletions
@@ -176,6 +176,9 @@ do [ -d ${cible}armhfp ] \ && ln ${cible}x86_64/$j ${cible}armhfp/$j \ && echo + $i linked armhfp + [ -d ${cible}aarch64 ] \ + && ln ${cible}x86_64/$j ${cible}aarch64/$j \ + && echo + $i linked aarch64 fi ;; *.i?86.rpm) @@ -75,13 +75,14 @@ then echo "== Création des liens (noarch) ==" srce=${srce/\/ppc/\/x86_64} srce=${srce/\/i386/\/x86_64} srce=${srce/\/armhfp/\/x86_64} + srce=${srce/\/aarch64/\/x86_64} ln -f $srce $dest && echo $dest done else echo "Rien à lier." fi -for dep in SRPMS fedora/{29,30,31}/*/{i386,x86_64} enterprise/{6,7,8}/*/{i386,x86_64,armhfp} +for dep in SRPMS fedora/{29,30,31}/*/{i386,x86_64} enterprise/{6,7,8}/*/{i386,x86_64,armhfp,aarch64} do [[ $dep =~ /modular ]] && continue |