Return-Path: Delivered-To: apmail-directory-dev-archive@www.apache.org Received: (qmail 29205 invoked from network); 27 Mar 2007 15:31:35 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 27 Mar 2007 15:31:35 -0000 Received: (qmail 4001 invoked by uid 500); 27 Mar 2007 15:31:41 -0000 Delivered-To: apmail-directory-dev-archive@directory.apache.org Received: (qmail 3975 invoked by uid 500); 27 Mar 2007 15:31:41 -0000 Mailing-List: contact dev-help@directory.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: "Apache Directory Developers List" Delivered-To: mailing list dev@directory.apache.org Received: (qmail 3961 invoked by uid 99); 27 Mar 2007 15:31:41 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 27 Mar 2007 08:31:41 -0700 X-ASF-Spam-Status: No, hits=2.0 required=10.0 tests=HTML_MESSAGE,SPF_PASS,UPPERCASE_25_50 X-Spam-Check-By: apache.org Received-SPF: pass (herse.apache.org: domain of akarasulu@gmail.com designates 66.249.82.233 as permitted sender) Received: from [66.249.82.233] (HELO wx-out-0506.google.com) (66.249.82.233) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 27 Mar 2007 08:31:32 -0700 Received: by wx-out-0506.google.com with SMTP id h31so2514148wxd for ; Tue, 27 Mar 2007 08:31:12 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:sender:to:subject:in-reply-to:mime-version:content-type:references:x-google-sender-auth; b=EILofcB3WE5XppEJRZt4LUCWOs8Vm1wZG25ixnyN9n1S71MLz7WcHNGk+3JmbDgEWHBXe/9vdBSt500HJDSqRcx9wxJ5DmKOREHVpVwzq1LflhuQ+A1KRbEov44PwTpd1XnKehiCdFffERxDbvgJpJpupVbOmhSHaDZQW9WMxEU= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:sender:to:subject:in-reply-to:mime-version:content-type:references:x-google-sender-auth; b=RH7g/H3QbIMrpY9GypNc6/ls6lC7kNbbbaizKla4P8c5fBfvDKTHjxTP0acVNzRbNIjALNg/skicIO522Bcbh1rMEorDVbmBVBsRY34BiIPJEI3DYTwni6T7eaSdiw/DpBfbvEw7YwFt/MuuC9Onu04vATe/N9nt9+wj9VUNvow= Received: by 10.70.113.15 with SMTP id l15mr12937525wxc.1175009471920; Tue, 27 Mar 2007 08:31:11 -0700 (PDT) Received: by 10.70.78.18 with HTTP; Tue, 27 Mar 2007 08:31:11 -0700 (PDT) Message-ID: Date: Tue, 27 Mar 2007 11:31:11 -0400 From: "Alex Karasulu" Sender: akarasulu@gmail.com To: "Apache Directory Developers List" Subject: Re: [RPM Installer] Cygwin Stuff in Start/Stop Shell Script In-Reply-To: <46018CE4.5050603@gmail.com> MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_4221_2094064.1175009471882" References: <46018CE4.5050603@gmail.com> X-Google-Sender-Auth: ab9650e95c597b37 X-Virus-Checked: Checked by ClamAV on apache.org ------=_Part_4221_2094064.1175009471882 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline Yeah this is for windows but if you want the script to work in the cygwin environment you're going to need this stuff. Really if you want to chop this stuff out I recommend checking that it still works in cygwin before doing so. Do you have a cygwin environment? Alex On 3/21/07, Ole Ersoy wrote: > > Howdy, > > In the start/stop script there's this Cygwin stuff: > > # For Cygwin, ensure paths are in UNIX format before anything is touched > if $cygwin ; then > [ -n "$APACHEDS_HOME" ] && > APACHEDS_HOME=`cygpath --unix "$APACHEDS_HOME"` > [ -n "$APACHEDS_HOME_LOCAL" ] && > APACHEDS_HOME_LOCAL=`cygpath --unix "$APACHEDS_HOME_LOCAL"` > [ -n "$JAVA_HOME" ] && > JAVA_HOME=`cygpath --unix "$JAVA_HOME"` > [ -n "$CLASSPATH" ] && > CLASSPATH=`cygpath --path --unix "$CLASSPATH"` > fi > > nuke? > > I think cygwin stuff is just for running on windows right? > > Thanks, > - Ole > ------=_Part_4221_2094064.1175009471882 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline
Yeah this is for windows but if you want the script to work in the cygwin environment you're going to need this stuff.
 
Really if you want to chop this stuff out I recommend checking that it still works in cygwin before doing so.  Do you have
a cygwin environment?
 
Alex

 
On 3/21/07, Ole Ersoy <ole.ersoy@gmail.com> wrote:
Howdy,

In the start/stop script there's this Cygwin stuff:

# For Cygwin, ensure paths are in UNIX format before anything is touched
if $cygwin ; then
[ -n "$APACHEDS_HOME" ] &&
   APACHEDS_HOME=`cygpath --unix "$APACHEDS_HOME"`
[ -n "$APACHEDS_HOME_LOCAL" ] &&
   APACHEDS_HOME_LOCAL=`cygpath --unix "$APACHEDS_HOME_LOCAL"`
[ -n "$JAVA_HOME" ] &&
   JAVA_HOME=`cygpath --unix "$JAVA_HOME"`
[ -n "$CLASSPATH" ] &&
   CLASSPATH=`cygpath --path --unix "$CLASSPATH"`
fi

nuke?

I think cygwin stuff is just for running on windows right?

Thanks,
- Ole

------=_Part_4221_2094064.1175009471882--