summaryrefslogtreecommitdiff
path: root/m4
diff options
context:
space:
mode:
authorTom Tromey <tromey@redhat.com>2006-06-14 12:35:16 +0000
committerTom Tromey <tromey@redhat.com>2006-06-14 12:35:16 +0000
commit46a39d3a5ecdadd8952fe620141dde4f90082481 (patch)
tree116a4c642abcf0f67858c46891eae08da07eee41 /m4
parentbaa5e0cdbb583d22d8d3faadaffbc50a3c4003e4 (diff)
downloadclasspath-46a39d3a5ecdadd8952fe620141dde4f90082481.tar.gz
PR java/28024:
* m4/acinclude.m4 (REGEN_WITH_JAY): Use backquote, not $(...). * configure.ac (QT_INCLUDE_DIR): Use backquote, not $(...).
Diffstat (limited to 'm4')
-rw-r--r--m4/acinclude.m44
1 files changed, 2 insertions, 2 deletions
diff --git a/m4/acinclude.m4 b/m4/acinclude.m4
index 30ae333b5..ead0090b4 100644
--- a/m4/acinclude.m4
+++ b/m4/acinclude.m4
@@ -409,13 +409,13 @@ AC_DEFUN([REGEN_WITH_JAY],
AC_MSG_ERROR("jay executable not found");
fi
else
- JAY_DIR_PATH=$(dirname "${withval}")
+ JAY_DIR_PATH=`dirname "${withval}"`
JAY="${withval}"
AC_SUBST(JAY)
fi
JAY_SKELETON="${JAY_DIR_PATH}/skeleton"
AC_CHECK_FILE(${JAY_SKELETON}, AC_SUBST(JAY_SKELETON),
- AC_MSG_ERROR("Expected skeleton file in $(dirname ${withval})"))
+ AC_MSG_ERROR("Expected skeleton file in `dirname ${withval}`"))
JAY_FOUND=yes
],
[