summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbjh <bjh@13f79535-47bb-0310-9956-ffa450edef68>2005-07-02 07:12:37 +0000
committerbjh <bjh@13f79535-47bb-0310-9956-ffa450edef68>2005-07-02 07:12:37 +0000
commit8a4336f5109e6e489559ca64ba7333c2a7f36464 (patch)
tree36becabb4e6bb6b4fc5b88dbaac1ab7c0ef2906b
parentcad002045a38b38a25ac265ce05bd2b7e7813794 (diff)
downloadlibapr-8a4336f5109e6e489559ca64ba7333c2a7f36464.tar.gz
OS/2: Use autoconf 2.5x compatible test for running under OS/2 when
determining how to test for scripts. $ac_cv_emxos2 was only defined by the common OS/2 port of autoconf 2.13. Backport from trunk of r164553 git-svn-id: http://svn.apache.org/repos/asf/apr/apr/branches/1.1.x@208825 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--build/find_apr.m42
1 files changed, 1 insertions, 1 deletions
diff --git a/build/find_apr.m4 b/build/find_apr.m4
index 9228c769b..117fb06f2 100644
--- a/build/find_apr.m4
+++ b/build/find_apr.m4
@@ -61,7 +61,7 @@ dnl
AC_DEFUN([APR_FIND_APR], [
apr_found="no"
- if test "$ac_cv_emxos2" = "yes"; then
+ if test "$target_os" = "os2-emx"; then
# Scripts don't pass test -x on OS/2
TEST_X="test -f"
else