tools/livecd-iso-to-disk.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
New commits: commit 094e885779928f3aabd14273ba718cf499765578 Author: Ville Skyttä <[email protected]> Date: Sat Sep 11 13:03:04 2010 -0500 Use grep instead of depreceated egrep. Signed-off-by: Bruno Wolff III <[email protected]> diff --git a/tools/livecd-iso-to-disk.sh b/tools/livecd-iso-to-disk.sh index f4d0855..f3df6f9 100755 --- a/tools/livecd-iso-to-disk.sh +++ b/tools/livecd-iso-to-disk.sh @@ -680,7 +680,7 @@ fi # boot on the XO anyway. if [ -n "$xo" ]; then echo "Setting up /boot/olpc.fth file" - args=$(egrep "^[ ]*append" $USBMNT/$SYSLINUXPATH/isolinux.cfg |head -n1 |sed -e 's/.*initrd=[^ ]*//') + args=$(grep "^ *append" $USBMNT/$SYSLINUXPATH/isolinux.cfg |head -n1 |sed -e 's/.*initrd=[^ ]*//') if [ -z "$xonohome" -a ! -f $USBMNT/$LIVEOS/$HOMEFILE ]; then args="$args persistenthome=mtd0" fi
-- livecd mailing list [email protected] https://admin.fedoraproject.org/mailman/listinfo/livecd
