blob: 97c720636d6f79e3973e3f9febbef760a9889bff (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
# i486-specific
if [ "${CARCH}" = "i486" ]; then
_JARCH=i386
fi
# pentium4-specific
if [ "${CARCH}" = "pentium4" ]; then
_JARCH=i386
_DOC_ARCH=x86
fi
_imgdir="${_imgdir//--/-${_JARCH}-}"
|