http://qa.mandrakesoft.com/show_bug.cgi?id=5221
[EMAIL PROTECTED] changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
------- Additional Comments From [EMAIL PROTECTED] 2003-15-09 20:54 -------
have you installed the latest version?
[EMAIL PROTECTED] thomas]$ rpm -qa bootloader-utils
bootloader-utils-1.6-2mdk
it's fixed there...
(AFAIK it was fixed in 1.5-1mdk)
--
Configure bugmail: http://qa.mandrakesoft.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.
------- Reminder: -------
assigned_to: [EMAIL PROTECTED]
status: RESOLVED
creation_date:
description:
Whenever new kernel is installed, the following message will be seen:
ln: invalid option -- o
Try `ln --help' for more information.
It's because there is a typo in do_create_link_source():
version="`echo $version | sed 's/-BOOT//'`"
local kernel_source=/usr/src/linux-$version
if [ -d $kernel_source ]; then
ln -sf $kernel-source /lib/modules/$kversion/build
fi
The hyphen between "$kernel" and "source" should be underscore instead.
Otherwise "-source" will be parsed as option to ln, thus causing failure to
create the .../build symlink.