pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/bootstrap Fix a square bracket mismatch.



details:   https://anonhg.NetBSD.org/pkgsrc/rev/d73d46e60afc
branches:  trunk
changeset: 391957:d73d46e60afc
user:      minskim <minskim%pkgsrc.org@localhost>
date:      Thu Apr 23 00:15:53 2009 +0000

description:
Fix a square bracket mismatch.

diffstat:

 bootstrap/bootstrap |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (20 lines):

diff -r 3c8efeb23eca -r d73d46e60afc bootstrap/bootstrap
--- a/bootstrap/bootstrap       Wed Apr 22 23:05:57 2009 +0000
+++ b/bootstrap/bootstrap       Thu Apr 23 00:15:53 2009 +0000
@@ -1,6 +1,6 @@
 #! /bin/sh
 
-# $NetBSD: bootstrap,v 1.143 2009/04/21 14:21:10 joerg Exp $
+# $NetBSD: bootstrap,v 1.144 2009/04/23 00:15:53 minskim Exp $
 #
 #
 # Copyright (c) 2001-2002 Alistair G. Crooks.  All rights reserved.
@@ -692,7 +692,7 @@
 check_prog shprog sh
 check_prog whoamiprog whoami
 
-if [ -d "${wrkdir}" ] || [ -f "${wrkdir}"; then
+if [ -d "${wrkdir}" ] || [ -f "${wrkdir}" ]; then
        echo "\"${wrkdir}\" already exists, please remove it or use --workdir.";
        exit 1
 fi



Home | Main Index | Thread Index | Old Index