You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by sh...@apache.org on 2010/01/28 13:51:50 UTC

svn commit: r904069 - /webservices/axis2/trunk/c/samples/configure.ac

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