Permalink
Show file tree
Hide file tree
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Fix WRAPPER_DIR contention between libxml2 and guththila
When configuring with --disable-libxml2 AND --enable-guththila, the WRAPPER_DIR variable gets cleared by --disable-libxml2 even after --enable-guththila has set it. JIRA: AXIS2C-1684
- Loading branch information
Showing
2 changed files
with
0 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -197,7 +197,6 @@ AC_ARG_ENABLE(libxml2, [ --enable-libxml2 | ||
[ case "${enableval}" in | ||
no) | ||
AC_MSG_RESULT(no) | ||
WRAPPER_DIR="" | ||
;; | ||
*) | ||
AC_MSG_RESULT(yes) | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -95,7 +95,6 @@ AC_ARG_ENABLE(libxml2, [ --enable-libxml2 | ||
[ case "${enableval}" in | ||
no) | ||
AC_MSG_RESULT(no) | ||
WRAPPER_DIR="" | ||
;; | ||
*) | ||
AC_MSG_RESULT(yes) | ||