summaryrefslogtreecommitdiff
path: root/binutils/aclocal.m4
diff options
context:
space:
mode:
authorNick Clifton <nickc@redhat.com>2001-03-13 06:43:59 +0000
committerNick Clifton <nickc@redhat.com>2001-03-13 06:43:59 +0000
commitc2b91cba58cdb4c94daa7c606b0dd8e041a690d5 (patch)
treea2a214274f7fa29db007d60883599ed5e7ebbe48 /binutils/aclocal.m4
parentf5f97c2c7b056fc8dd65b0a7e6e71cb9c42fe6fb (diff)
downloadbinutils-redhat-c2b91cba58cdb4c94daa7c606b0dd8e041a690d5.tar.gz
Fix typos in ChangeLogs and update copyright notices
Diffstat (limited to 'binutils/aclocal.m4')
-rw-r--r--binutils/aclocal.m419
1 files changed, 10 insertions, 9 deletions
diff --git a/binutils/aclocal.m4 b/binutils/aclocal.m4
index 37c162a1d4..a4a2b46aaf 100644
--- a/binutils/aclocal.m4
+++ b/binutils/aclocal.m4
@@ -27,6 +27,16 @@ AC_DEFUN([CY_WITH_NLS],)
AC_SUBST(INTLLIBS)
])
+
+
+dnl AM_PROG_LEX
+dnl Look for flex, lex or missing, then run AC_PROG_LEX and AC_DECL_YYTEXT
+AC_DEFUN(AM_PROG_LEX,
+[missing_dir=ifelse([$1],,`cd $ac_aux_dir && pwd`,$1)
+AC_CHECK_PROGS(LEX, flex lex, [$missing_dir/missing flex])
+AC_PROG_LEX
+AC_DECL_YYTEXT])
+
#serial 1
# This test replaces the one in autoconf.
# Currently this macro should have the same name as the autoconf macro
@@ -45,15 +55,6 @@ AC_DEFUN(AC_ISC_POSIX,
]
)
-
-dnl AM_PROG_LEX
-dnl Look for flex, lex or missing, then run AC_PROG_LEX and AC_DECL_YYTEXT
-AC_DEFUN(AM_PROG_LEX,
-[missing_dir=ifelse([$1],,`cd $ac_aux_dir && pwd`,$1)
-AC_CHECK_PROGS(LEX, flex lex, [$missing_dir/missing flex])
-AC_PROG_LEX
-AC_DECL_YYTEXT])
-
# Do all the work for Automake. This macro actually does too much --
# some checks are only needed if your package does certain things.
# But this isn't really a big deal.