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
commit8c2bc6877d75f8cd9073f206fab29920f73d325c (patch)
treea66e109ca074e0b715fcd04ffc6f7dbc60206a63 /binutils/aclocal.m4
parenta2b64bede395d988a7ae6676e2411b7ec5da8248 (diff)
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.