Merge "Correct misuse of return in ramdisk-image-create"

This commit is contained in:
Jenkins 2013-02-12 23:05:07 +00:00 committed by Gerrit Code Review
commit 750e4c3e06

View File

@ -73,14 +73,14 @@ FIRMWARE_DIR=$MODULE_ROOT/lib/firmware
if [ ! -d "$MODULE_DIR" ]; then
echo "ERROR: kernel module directory not found at $MODULE_DIR"
return 1
exit 1
fi
LIB_UDEV=$LIB_UDEV_ROOT/lib/udev
if [ ! -d "$LIB_UDEV" ]; then
echo "ERROR: udev directory not found at $LIB_UDEV"
return 1
exit 1
fi
mk_build_dir