Hi,
When building a stage4 I get the following error with catalyst-2.0.1:
* GNU info directory index is up-to-date.
Emerging packages using stage4 use flags
/tmp/stage4-chroot.sh: line 23: syntax error near unexpected token `fi'
/tmp/stage4-chroot.sh: line 23: `fi'
On / around line 23 is the following code in
/usr/lib/catalyst/targets/stage4/stage4-chroot.sh:
echo "Emerging packages using stage4 use flags"
if [ -n "${clst_use}" ]
USE="${clst_HOSTUSE} ${clst_use}"
fi
Changing that in:
echo "Emerging packages using stage4 use flags"
if [[ -n "${clst_use}" ]]; then
USE="${clst_HOSTUSE} ${clst_use}"
fi
Removes the problem.
Should I file a bug on b.g.o ??
Regards,
Ramon
--
[EMAIL PROTECTED] mailing list