From: David Levine Date: Mon, 23 Dec 2013 21:32:45 +0000 (-0600) Subject: Added "true" to end of flex fixups in configure.ac, in case the X-Git-Url: https://diplodocus.org/git/nmh/commitdiff_plain/49d74588c43b995477ef4c679489385eeacd7ca3?hp=005c31fab73f653d1244e708ae18c254b5b4e962 Added "true" to end of flex fixups in configure.ac, in case the user has hacked flex to not produce the errant code. --- diff --git a/configure.ac b/configure.ac index 00835424..3cefd662 100644 --- a/configure.ac +++ b/configure.ac @@ -598,9 +598,11 @@ dnl http://sourceforge.net/p/flex/bugs/140/ AS_IF([test "$LEX" = flex], [AS_CASE([`$LEX -V`], [flex\ 2.5.35], [LFLAGS=\ -'; printf "%s\n" '\''1,$$s/(size_t) \(num_to_read\)/\1/'\'' w q | ed -s $@'], +'; printf "%s\n" '\''1,$$s/(size_t) \(num_to_read\)/\1/'\'' w q | ed -s $@; \ +true'], [flex\ 2.5.36], [LFLAGS=\ -'; printf "%s\n" '\''1,$$s/\( \)int i;/\1yy_size_t i;/'\'' w q | ed -s $@']) +'; printf "%s\n" '\''1,$$s/\( \)int i;/\1yy_size_t i;/'\'' w q | ed -s $@; \ +true']) AC_SUBST([LFLAGS])]) dnl --------------