pck-update: buildreqs_to_install: keep conservative classic behaviour on archs different from x86_64
This commit is contained in:
parent
b3419dc9c0
commit
a2e617b4c2
@ -1992,11 +1992,14 @@ build requirement found"": \`${NOTE}$f${NORM}' ""\
|
|||||||
buildreqs_to_install=(
|
buildreqs_to_install=(
|
||||||
$(for f in ${buildreqs_to_install[@]}; do
|
$(for f in ${buildreqs_to_install[@]}; do
|
||||||
if [ "${f/.*}" != "${f}" ]; then
|
if [ "${f/.*}" != "${f}" ]; then
|
||||||
# if arch specified convert from spec to smart format: package.arch -> package@arch
|
# if arch specified convert e.g. package.i586 to package@i586
|
||||||
echo ${f/./@}
|
echo ${f/./@}
|
||||||
else
|
elif [ "${BUILD_ARCH}" == "x86_64" ]; then
|
||||||
# if not add arch (FIXME: smart won't find package if noarch)
|
# x86_64: specifying arch is necessary (FIXME: problems with .noarch)
|
||||||
echo $f@$target_cpu
|
echo $f@$target_cpu
|
||||||
|
else
|
||||||
|
# classic behaviour
|
||||||
|
echo $f
|
||||||
fi
|
fi
|
||||||
done | sort -u))
|
done | sort -u))
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user