diff options
-rwxr-xr-x | getmock | 3 | ||||
-rwxr-xr-x | mkallrepo | 3 |
2 files changed, 6 insertions, 0 deletions
@@ -128,6 +128,9 @@ do [ -d ${cible}i386 ] \ && ln ${cible}x86_64/$j ${cible}i386/$j \ && echo + $i linked x86_64 + [ -d ${cible}armhfp ] \ + && ln ${cible}x86_64/$j ${cible}armhfp/$j \ + && echo + $i linked armhfp fi ;; *.i?86.rpm) @@ -2,7 +2,9 @@ TMPSIG=$(mktemp) TMPLNK=$(mktemp) +TMPSIG1=$(mktemp) TMPSIG2=$(mktemp) +TMPSIG3=$(mktemp) cd /home/rpmbuild/site/rpms @@ -69,6 +71,7 @@ then echo "== Création des liens (noarch) ==" srce=${dest/\/ppc64/\/x86_64} srce=${srce/\/ppc/\/x86_64} srce=${srce/\/i386/\/x86_64} + srce=${srce/\/armhfp/\/x86_64} ln -f $srce $dest && echo $dest done |