xbps-mklive: don't treat missing splash file as fatal error. Bump to 0.3.1.

This commit is contained in:
Juan RP 2010-05-14 03:27:14 +02:00
parent 561783f002
commit b4fb5178a8
2 changed files with 4 additions and 4 deletions

View File

@ -161,9 +161,9 @@ if [ ! -f "$ISOLINUX_DIR/isolinux.cfg" ]; then
write_default_isolinux_conf ${kernel_ver}
fi
[ ! -f "$SPLASH_IMAGE" ] && echo "Cannot find splash image!" && error_out 1
cp -f $SPLASH_IMAGE "$ISOLINUX_DIR"
if [ -f "$SPLASH_IMAGE" ]; then
cp -f $SPLASH_IMAGE "$ISOLINUX_DIR"
fi
if [ ! -f "$ISOLINUX_DIR/vesamenu.c32" ]; then
cp -f $SYSLINUX_DATADIR/vesamenu.c32 "$ISOLINUX_DIR"

View File

@ -1,6 +1,6 @@
# Template file for 'xbps-mklive'
pkgname=xbps-mklive
version=0.3.0
version=0.3.1
build_style=custom-install
short_desc="XBPS Live image maker"
maintainer="Juan RP <xtraeme@gmail.com>"