################################################################################
lfsmakecommoncheck()
{
+ # Skip lfs/Config
+ [ "$(basename $1)" = "Config" ] && return 1
+
# Script present?
if [ ! -f $BASEDIR/lfs/$1 ]; then
exiterror "No such file or directory: $BASEDIR/lfs/$1"
# This is the function that compresses every package #
################################################################################
package_make() {
+ # Do nothing on symlinks
+ [ -L "$1" ] && return 0
+
SKIP_PACKAGE_LIST="SKIP_PACKAGE_LIST Config adjust-toolchain cdrom images pxe test-toolchain usb-key usb-stick" \
lfsmakecommoncheck $*
[ $? == 1 ] && return 0