summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Gianelloni <wolf31o2@gentoo.org>2007-03-07 16:14:26 +0000
committerChris Gianelloni <wolf31o2@gentoo.org>2007-03-07 16:14:26 +0000
commit9c863de0a49f182fa22cf7f0b33c723b9da06819 (patch)
treed5f5c51ca279a77d62c7663fff93b5d4386fa60d /games-emulation
parentStable on x86, bug #169418. (diff)
downloadgentoo-2-9c863de0a49f182fa22cf7f0b33c723b9da06819.tar.gz
gentoo-2-9c863de0a49f182fa22cf7f0b33c723b9da06819.tar.bz2
gentoo-2-9c863de0a49f182fa22cf7f0b33c723b9da06819.zip
Change all instances of [ to [[.
(Portage version: 2.1.2.1)
Diffstat (limited to 'games-emulation')
-rw-r--r--games-emulation/virtualjaguar/ChangeLog5
-rw-r--r--games-emulation/virtualjaguar/files/virtualjaguar10
2 files changed, 9 insertions, 6 deletions
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 <wolf31o2@gentoo.org> files/virtualjaguar:
+ Change all instances of [ to [[.
21 Feb 2007; Piotr Jaroszyński <peper@gentoo.org> 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/"