xbps-mklive: don't treat missing splash file as fatal error. Bump to 0.3.1.
This commit is contained in:
parent
561783f002
commit
b4fb5178a8
2 changed files with 4 additions and 4 deletions
|
@ -161,9 +161,9 @@ if [ ! -f "$ISOLINUX_DIR/isolinux.cfg" ]; then
|
||||||
write_default_isolinux_conf ${kernel_ver}
|
write_default_isolinux_conf ${kernel_ver}
|
||||||
fi
|
fi
|
||||||
|
|
||||||
[ ! -f "$SPLASH_IMAGE" ] && echo "Cannot find splash image!" && error_out 1
|
if [ -f "$SPLASH_IMAGE" ]; then
|
||||||
|
cp -f $SPLASH_IMAGE "$ISOLINUX_DIR"
|
||||||
cp -f $SPLASH_IMAGE "$ISOLINUX_DIR"
|
fi
|
||||||
|
|
||||||
if [ ! -f "$ISOLINUX_DIR/vesamenu.c32" ]; then
|
if [ ! -f "$ISOLINUX_DIR/vesamenu.c32" ]; then
|
||||||
cp -f $SYSLINUX_DATADIR/vesamenu.c32 "$ISOLINUX_DIR"
|
cp -f $SYSLINUX_DATADIR/vesamenu.c32 "$ISOLINUX_DIR"
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
# Template file for 'xbps-mklive'
|
# Template file for 'xbps-mklive'
|
||||||
pkgname=xbps-mklive
|
pkgname=xbps-mklive
|
||||||
version=0.3.0
|
version=0.3.1
|
||||||
build_style=custom-install
|
build_style=custom-install
|
||||||
short_desc="XBPS Live image maker"
|
short_desc="XBPS Live image maker"
|
||||||
maintainer="Juan RP <xtraeme@gmail.com>"
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
||||||
|
|
Loading…
Reference in a new issue