diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2017-02-19 16:41:51 -0500 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2017-02-19 16:41:51 -0500 |
commit | 5b3a2ca850718e1fd74f26bc2886e880676b2cd6 (patch) | |
tree | ff07e33915c81baf802f078de4bb49c2e56f854a /src/Makefile.global.in | |
parent | 170511b30da40d73b54d8190711cd6066327b934 (diff) | |
download | postgresql-5b3a2ca850718e1fd74f26bc2886e880676b2cd6.tar.gz |
Dept of second thoughts: rename new perl script.
It didn't take long at all for me to become irritated that the original
choice of name for this script resulted in "warning" showing up in several
places in build logs, because I tend to grep for that. Change the script
name to avoid that.
Diffstat (limited to 'src/Makefile.global.in')
-rw-r--r-- | src/Makefile.global.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Makefile.global.in b/src/Makefile.global.in index 35c8cb826e..831d39a9d1 100644 --- a/src/Makefile.global.in +++ b/src/Makefile.global.in @@ -627,7 +627,7 @@ TAS = @TAS@ ifdef FLEX $(FLEX) $(if $(FLEX_NO_BACKUP),-b) $(FLEXFLAGS) -o'$@' $< @$(if $(FLEX_NO_BACKUP),if [ `wc -l <lex.backup` -eq 1 ]; then rm lex.backup; else echo "Scanner requires backup; see lex.backup." 1>&2; exit 1; fi) - $(if $(FLEX_FIX_WARNING),$(PERL) $(top_srcdir)/src/tools/fix-flex-warning.pl '$@') + $(if $(FLEX_FIX_WARNING),$(PERL) $(top_srcdir)/src/tools/fix-old-flex-code.pl '$@') else @$(missing) flex $< '$@' endif |