summaryrefslogtreecommitdiff
path: root/build/find_apr.m4
diff options
context:
space:
mode:
authorBrian Havard <bjh@apache.org>2005-04-25 10:11:09 +0000
committerBrian Havard <bjh@apache.org>2005-04-25 10:11:09 +0000
commit0253eb7e8f6396417caf055e107a3cb93d97eebe (patch)
treee3dec2718630fd01d57c6d439cba6ae68ec90fd8 /build/find_apr.m4
parent30717c66b4889197b1b5be6e3537acce3cd2fc0f (diff)
downloadapr-0253eb7e8f6396417caf055e107a3cb93d97eebe.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. git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@164553 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'build/find_apr.m4')
-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