http://qa.mandrakesoft.com/show_bug.cgi?id=5221
[EMAIL PROTECTED] changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |[EMAIL PROTECTED]
------- Additional Comments From [EMAIL PROTECTED] 2003-16-09 17:27 -------
I also get the same problems with symllinks in specific old source directories.
I always just upgrade the source packages.
--
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: REOPENED
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.