Return-Path: Delivered-To: apmail-ws-axis-dev-archive@www.apache.org Received: (qmail 25513 invoked from network); 16 Aug 2009 20:43:39 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 16 Aug 2009 20:43:39 -0000 Received: (qmail 66836 invoked by uid 500); 16 Aug 2009 20:43:45 -0000 Delivered-To: apmail-ws-axis-dev-archive@ws.apache.org Received: (qmail 66735 invoked by uid 500); 16 Aug 2009 20:43:45 -0000 Mailing-List: contact axis-dev-help@ws.apache.org; run by ezmlm Precedence: bulk Reply-To: axis-dev@ws.apache.org list-help: list-unsubscribe: List-Post: List-Id: Delivered-To: mailing list axis-dev@ws.apache.org Received: (qmail 66726 invoked by uid 99); 16 Aug 2009 20:43:45 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 16 Aug 2009 20:43:45 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED,URIBL_RED X-Spam-Check-By: apache.org Received: from [140.211.11.140] (HELO brutus.apache.org) (140.211.11.140) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 16 Aug 2009 20:43:35 +0000 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id D98D0234C055 for ; Sun, 16 Aug 2009 13:43:14 -0700 (PDT) Message-ID: <1573082445.1250455394890.JavaMail.jira@brutus> Date: Sun, 16 Aug 2009 13:43:14 -0700 (PDT) From: "Andreas Veithen (JIRA)" To: axis-dev@ws.apache.org Subject: [jira] Resolved: (AXIS2-4324) setenv.sh - extended shell functionality used where /bin/sh specified In-Reply-To: <895711891.1240552530349.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/AXIS2-4324?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Andreas Veithen resolved AXIS2-4324. ------------------------------------ Resolution: Fixed Fix Version/s: 1.6 Fixed in r804771. Thanks for pointing this out! > setenv.sh - extended shell functionality used where /bin/sh specified > --------------------------------------------------------------------- > > Key: AXIS2-4324 > URL: https://issues.apache.org/jira/browse/AXIS2-4324 > Project: Axis 2.0 (Axis2) > Issue Type: Bug > Affects Versions: 1.4.1 > Environment: SunOS 5.10 Generic sun4u sparc SUNW > Reporter: Peter Barker > Assignee: Andreas Veithen > Priority: Minor > Fix For: 1.6 > > Original Estimate: 0.17h > Remaining Estimate: 0.17h > > This script declares itself as #!/bin/sh, but the script uses extended functionality not present in the /bin/sh present on this operating system. The following patch appears to fix the problem: > --- ../../../axis2/axis2-1.4/bin/setenv.sh 2008-03-22 10:22:22.000000000 +1100 > +++ setenv.sh-pbfix 2009-04-24 15:52:29.000000000 +1000 > @@ -79,7 +79,8 @@ > system $COMMAND > # Enable multi threading > - export QIBM_MULTI_THREADED=Y > + QIBM_MULTI_THREADED=Y > + export QIBM_MULTI_THREADED > fi > # update classpath > @@ -99,9 +100,9 @@ > JAVA_ENDORSED_DIRS=`cygpath --path --windows "$JAVA_ENDORSED_DIRS"` > fi > -export AXIS2_HOME="$AXIS2_HOME" > -export JAVA_HOME="$JAVA_HOME" > -export AXIS2_CLASSPATH="$AXIS2_CLASSPATH" > +export AXIS2_HOME > +export JAVA_HOME > +export AXIS2_CLASSPATH > echo " Using AXIS2_HOME: $AXIS2_HOME" -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.