Return-Path: Delivered-To: apmail-geronimo-scm-archive@www.apache.org Received: (qmail 54816 invoked from network); 26 Feb 2008 15:59:33 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 26 Feb 2008 15:59:33 -0000 Received: (qmail 11272 invoked by uid 500); 26 Feb 2008 15:59:28 -0000 Delivered-To: apmail-geronimo-scm-archive@geronimo.apache.org Received: (qmail 11232 invoked by uid 500); 26 Feb 2008 15:59:28 -0000 Mailing-List: contact scm-help@geronimo.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: List-Post: Reply-To: dev@geronimo.apache.org List-Id: Delivered-To: mailing list scm@geronimo.apache.org Received: (qmail 11223 invoked by uid 99); 26 Feb 2008 15:59:28 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 26 Feb 2008 07:59:28 -0800 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO eris.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 26 Feb 2008 15:58:43 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 33B461A9832; Tue, 26 Feb 2008 07:59:03 -0800 (PST) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r631267 - in /geronimo/server/branches/2.0/assemblies/geronimo-boilerplate-minimal/src/main/resources/bin: deploy.sh geronimo.sh Date: Tue, 26 Feb 2008 15:59:01 -0000 To: scm@geronimo.apache.org From: gawor@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20080226155903.33B461A9832@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: gawor Date: Tue Feb 26 07:59:00 2008 New Revision: 631267 URL: http://svn.apache.org/viewvc?rev=631267&view=rev Log: cygwin fix: GERONIMO_TMPDIR should be passed as a relative directory (GERONIMO-3836) Modified: geronimo/server/branches/2.0/assemblies/geronimo-boilerplate-minimal/src/main/resources/bin/deploy.sh geronimo/server/branches/2.0/assemblies/geronimo-boilerplate-minimal/src/main/resources/bin/geronimo.sh Modified: geronimo/server/branches/2.0/assemblies/geronimo-boilerplate-minimal/src/main/resources/bin/deploy.sh URL: http://svn.apache.org/viewvc/geronimo/server/branches/2.0/assemblies/geronimo-boilerplate-minimal/src/main/resources/bin/deploy.sh?rev=631267&r1=631266&r2=631267&view=diff ============================================================================== --- geronimo/server/branches/2.0/assemblies/geronimo-boilerplate-minimal/src/main/resources/bin/deploy.sh (original) +++ geronimo/server/branches/2.0/assemblies/geronimo-boilerplate-minimal/src/main/resources/bin/deploy.sh Tue Feb 26 07:59:00 2008 @@ -176,7 +176,7 @@ JRE_HOME=`cygpath --absolute --windows "$JRE_HOME"` GERONIMO_HOME=`cygpath --absolute --windows "$GERONIMO_HOME"` GERONIMO_BASE=`cygpath --absolute --windows "$GERONIMO_BASE"` - GERONIMO_TMPDIR=`cygpath --absolute --windows "$GERONIMO_TMPDIR"` + GERONIMO_TMPDIR=`cygpath --windows "$GERONIMO_TMPDIR"` fi # ----- Execute The Requested Command ----------------------------------------- Modified: geronimo/server/branches/2.0/assemblies/geronimo-boilerplate-minimal/src/main/resources/bin/geronimo.sh URL: http://svn.apache.org/viewvc/geronimo/server/branches/2.0/assemblies/geronimo-boilerplate-minimal/src/main/resources/bin/geronimo.sh?rev=631267&r1=631266&r2=631267&view=diff ============================================================================== --- geronimo/server/branches/2.0/assemblies/geronimo-boilerplate-minimal/src/main/resources/bin/geronimo.sh (original) +++ geronimo/server/branches/2.0/assemblies/geronimo-boilerplate-minimal/src/main/resources/bin/geronimo.sh Tue Feb 26 07:59:00 2008 @@ -234,7 +234,7 @@ JDB_SRCPATH=`cygpath --absolute --windows "$JDB_SRCPATH"` GERONIMO_HOME=`cygpath --absolute --windows "$GERONIMO_HOME"` GERONIMO_BASE=`cygpath --absolute --windows "$GERONIMO_BASE"` - GERONIMO_TMPDIR=`cygpath --absolute --windows "$GERONIMO_TMPDIR"` + GERONIMO_TMPDIR=`cygpath --windows "$GERONIMO_TMPDIR"` ENDORSED_DIRS="$GERONIMO_BASE/lib/endorsed;$JRE_HOME/lib/endorsed" else ENDORSED_DIRS="$GERONIMO_BASE/lib/endorsed:$JRE_HOME/lib/endorsed"