Return-Path: Delivered-To: apmail-ws-axis-dev-archive@www.apache.org Received: (qmail 33794 invoked from network); 28 Jan 2010 12:52:18 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 28 Jan 2010 12:52:18 -0000 Received: (qmail 96145 invoked by uid 500); 28 Jan 2010 12:52:18 -0000 Delivered-To: apmail-ws-axis-dev-archive@ws.apache.org Received: (qmail 95971 invoked by uid 500); 28 Jan 2010 12:52:17 -0000 Mailing-List: contact axis-cvs-help@ws.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: List-Post: List-Id: Delivered-To: mailing list axis-cvs@ws.apache.org Received: (qmail 95962 invoked by uid 500); 28 Jan 2010 12:52:17 -0000 Delivered-To: apmail-ws-axis2-cvs@ws.apache.org Received: (qmail 95959 invoked by uid 99); 28 Jan 2010 12:52:17 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 28 Jan 2010 12:52:17 +0000 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.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 28 Jan 2010 12:52:10 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 43F5623888E2; Thu, 28 Jan 2010 12:51:50 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r904069 - /webservices/axis2/trunk/c/samples/configure.ac Date: Thu, 28 Jan 2010 12:51:50 -0000 To: axis2-cvs@ws.apache.org From: shankar@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20100128125150.43F5623888E2@eris.apache.org> Author: shankar Date: Thu Jan 28 12:51:49 2010 New Revision: 904069 URL: http://svn.apache.org/viewvc?rev=904069&view=rev Log: fixing issue AXIS2C-1438 Modified: webservices/axis2/trunk/c/samples/configure.ac Modified: webservices/axis2/trunk/c/samples/configure.ac URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/samples/configure.ac?rev=904069&r1=904068&r2=904069&view=diff ============================================================================== --- webservices/axis2/trunk/c/samples/configure.ac (original) +++ webservices/axis2/trunk/c/samples/configure.ac Thu Jan 28 12:51:49 2010 @@ -84,7 +84,7 @@ [ --with-axis2[=PATH] Find the AXIS2 header files in 'PATH'. 'PATH' should point to AXIS2 include files location. If you omit the '=PATH' part completely, the configure script will search - '$(AXIS2C_HOME)/include/axis2-1.6.0' for AXIS2 headers.], + '${AXIS2C_HOME}/include/axis2-1.6.0' for AXIS2 headers.], [ case "$withval" in no) AC_MSG_RESULT(no) @@ -94,9 +94,9 @@ dnl Find axiom include dir in the path if test -d $withval; then axis2inc="-I$withval" - dnl else find the axiom include dir in $(AXIS2C_HOME)/include - elif test -d '$(AXIS2C_HOME)/include'; then - axis2inc="-I$(AXIS2C_HOME)/include/axis2-1.6.0" + dnl else find the axiom include dir in ${AXIS2C_HOME}/include + elif test -d "${AXIS2C_HOME}/include"; then + axis2inc="-I${AXIS2C_HOME}/include/axis2-1.6.0" else AC_MSG_ERROR(could not find axis2. stop) fi