From 9c863de0a49f182fa22cf7f0b33c723b9da06819 Mon Sep 17 00:00:00 2001 From: Chris Gianelloni Date: Wed, 7 Mar 2007 16:14:26 +0000 Subject: Change all instances of [ to [[. (Portage version: 2.1.2.1) --- games-emulation/virtualjaguar/ChangeLog | 5 ++++- games-emulation/virtualjaguar/files/virtualjaguar | 10 +++++----- 2 files changed, 9 insertions(+), 6 deletions(-) (limited to 'games-emulation') diff --git a/games-emulation/virtualjaguar/ChangeLog b/games-emulation/virtualjaguar/ChangeLog index ddedffedf914..a6f1ba250b92 100644 --- a/games-emulation/virtualjaguar/ChangeLog +++ b/games-emulation/virtualjaguar/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for games-emulation/virtualjaguar # Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-emulation/virtualjaguar/ChangeLog,v 1.9 2007/02/21 23:33:06 peper Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-emulation/virtualjaguar/ChangeLog,v 1.10 2007/03/07 16:14:26 wolf31o2 Exp $ + + 07 Mar 2007; Chris Gianelloni files/virtualjaguar: + Change all instances of [ to [[. 21 Feb 2007; Piotr JaroszyƄski ChangeLog: Transition to Manifest2. diff --git a/games-emulation/virtualjaguar/files/virtualjaguar b/games-emulation/virtualjaguar/files/virtualjaguar index 9d0243be0818..a64c7316aca5 100644 --- a/games-emulation/virtualjaguar/files/virtualjaguar +++ b/games-emulation/virtualjaguar/files/virtualjaguar @@ -3,28 +3,28 @@ # Script for launching virtualjaguar # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-emulation/virtualjaguar/files/virtualjaguar,v 1.4 2004/12/12 06:49:55 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-emulation/virtualjaguar/files/virtualjaguar,v 1.5 2007/03/07 16:14:26 wolf31o2 Exp $ source /sbin/functions.sh shopt -s nullglob -if [ ! -d ~/.vj/bios ] ; then +if [[ ! -d ~/.vj/bios ]] ; then mkdir -p ~/.vj/bios fi -if [ ! -d ~/.vj/eeproms ] ; then +if [[ ! -d ~/.vj/eeproms ]] ; then mkdir -p ~/.vj/eeproms fi -if [ ! -d ~/.vj/ROMs ] ; then +if [[ ! -d ~/.vj/ROMs ]] ; then mkdir -p ~/.vj/ROMs fi cd ~/.vj # check for bios -if [ -z "`cd ./bios && ls`" ] ; then +if [[ -z "`cd ./bios && ls`" ]] ; then # if the bios directory is empty, then ... well ... echo eerror " Put your BIOS file into ~/.vj/bios/" -- cgit v1.2.3-65-gdbad