Remove the build and source symbolic links from

/lib/modules/${version}, as leaving them in 
generates scary warnings during the image
installation.

svn path=/trunk/kernel/source/linux-kernel-2.6.12/; revision=3426
This commit is contained in:
Jurij Smakov 2005-07-07 02:49:33 +00:00
parent f4b63e392a
commit e698c06dab
1 changed files with 9 additions and 0 deletions

View File

@ -105,3 +105,12 @@ if [ -n "${modules}" ]; then
fi
done
fi
#
# Clean up the build and source symlinks
#
if [ -L build ]; then
rm -f build
fi
if [ -L source ]; then
rm -f source
fi