diff options
author | Tom Tromey <tromey@redhat.com> | 2009-04-22 00:17:50 +0000 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2009-04-22 00:17:50 +0000 |
commit | d2596e2e7b3d9f2a1d559c619996a3072678a747 (patch) | |
tree | ada0413b4ed38d5fe42ab096daad2918914e2c2d /gdb/acinclude.m4 | |
parent | c8f5dc0dcb17a2dd83da3d514a59d2ff761545ee (diff) | |
download | gdb-d2596e2e7b3d9f2a1d559c619996a3072678a747.zip gdb-d2596e2e7b3d9f2a1d559c619996a3072678a747.tar.gz gdb-d2596e2e7b3d9f2a1d559c619996a3072678a747.tar.bz2 |
* acinclude.m4: Use AS_HELP_STRING, not AC_HELP_STRING.
* configure.ac: Use AS_HELP_STRING, not AC_HELP_STRING.
Diffstat (limited to 'gdb/acinclude.m4')
-rw-r--r-- | gdb/acinclude.m4 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/acinclude.m4 b/gdb/acinclude.m4 index ab58112..932dd4f 100644 --- a/gdb/acinclude.m4 +++ b/gdb/acinclude.m4 @@ -175,7 +175,7 @@ AC_DEFUN([AM_ICONV], dnl those with the standalone portable GNU libiconv installed). AC_ARG_WITH([libiconv-prefix], - AC_HELP_STRING([--with-libiconv-prefix=DIR], [search for libiconv in DIR/include and DIR/lib]), [ + AS_HELP_STRING([--with-libiconv-prefix=DIR], [search for libiconv in DIR/include and DIR/lib]), [ for dir in `echo "$withval" | tr : ' '`; do if test -d $dir/include; then LIBICONV_INCLUDE="-I$dir/include"; fi if test -d $dir/lib; then LIBICONV_LIBDIR="-L$dir/lib"; fi |