From: H.J. Lu Date: Thu, 9 May 2024 20:07:23 +0000 (-0700) Subject: Don't make errlist.o[s].d depend on errlist-compat.h X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3362604df4f06f579ddaed1d0a4622d2ac8463cf;p=thirdparty%2Fglibc.git Don't make errlist.o[s].d depend on errlist-compat.h stdio-common/errlist.o.d and stdio-common/errlist.os.d aren't generated alongside with stdio-common/errlist-compat.h. Don't make them depend on stdio-common/errlist-compat.h to avoid infinite loop with make-4.4. This fixes BZ #31330. Signed-off-by: H.J. Lu Reviewed-by: Sunil K Pandey --- diff --git a/sysdeps/gnu/Makefile b/sysdeps/gnu/Makefile index ae0c3fc0aac..ccb5ed8bea1 100644 --- a/sysdeps/gnu/Makefile +++ b/sysdeps/gnu/Makefile @@ -54,8 +54,7 @@ $(objpfx)errlist-compat.h: $(objpfx)errlist-compat.c generated += errlist-compat.c errlist-compat.h # This will force the generation above to happy if need be. -$(foreach o,$(object-suffixes) $(object-suffixes:=.d),\ - $(objpfx)errlist$o): $(objpfx)errlist-compat.h +$(foreach o,$(object-suffixes),$(objpfx)errlist$o): $(objpfx)errlist-compat.h endif ifeq ($(subdir),login)