Makefile.am: Set AM_YFLAGS and AM_LFLAGS, not YFLAGS or LFLAGS.

YFLAGS and LFLAGS are reserved for the user to set, not for makefiles
to set:
https://www.gnu.org/software/automake/manual/html_node/Flag-Variables-Ordering.html

fix https://github.com/heimdal/heimdal/issues/1171
This commit is contained in:
Taylor R Campbell
2023-06-21 23:08:32 +00:00
committed by Nico Williams
parent ca0e53b64f
commit 8ac4266021
3 changed files with 5 additions and 5 deletions

View File

@@ -2,8 +2,8 @@
include $(top_srcdir)/Makefile.am.common
YFLAGS = -d -o parse.c
LFLAGS = @FLEXNOUNPUTARGS@
AM_YFLAGS = -d -o parse.c
AM_LFLAGS = @FLEXNOUNPUTARGS@
lib_LTLIBRARIES = libcom_err.la
libcom_err_la_LDFLAGS = -version-info 2:3:1