diff options
author | Tom Tromey <tromey@redhat.com> | 2006-06-14 12:35:16 +0000 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2006-06-14 12:35:16 +0000 |
commit | 46a39d3a5ecdadd8952fe620141dde4f90082481 (patch) | |
tree | 116a4c642abcf0f67858c46891eae08da07eee41 /m4/acinclude.m4 | |
parent | baa5e0cdbb583d22d8d3faadaffbc50a3c4003e4 (diff) | |
download | classpath-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/acinclude.m4')
-rw-r--r-- | m4/acinclude.m4 | 4 |
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 ], [ |