Ignore:
Timestamp:
Feb 6, 2017, 1:00:00 PM (8 years ago)
Author:
Silvan Scherrer
Message:

binutils: update trunk to version 2.27

Location:
binutils/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • binutils/trunk

  • TabularUnified binutils/trunk/config/override.m4

    r1582 r1973  
    102102])
    103103
     104dnl If flex/lex are not found, the top level configure sets LEX to
     105dnl "/path_to/missing flex".  When AC_PROG_LEX tries to find the flex
     106dnl output file, it calls $LEX to do so, but the current lightweight
     107dnl "missing" won't create a file.  This results in an error.
     108dnl Avoid calling the bulk of AC_PROG_LEX when $LEX is "missing".
     109AC_DEFUN_ONCE([AC_PROG_LEX],
     110[AC_CHECK_PROGS(LEX, flex lex, :)
     111case "$LEX" in
     112  :|*"missing "*) ;;
     113  *) _AC_PROG_LEX_YYTEXT_DECL ;;
     114esac])
     115
    104116])
Note: See TracChangeset for help on using the changeset viewer.