diff options
author | Andreas Schwab <schwab@suse.de> | 2022-09-08 10:25:21 +0200 |
---|---|---|
committer | Andreas Schwab <schwab@suse.de> | 2022-09-08 11:40:24 +0200 |
commit | 3d7d5c10c806ee24f8e35014e41e203002609a3f (patch) | |
tree | 51dd5716607a54c794674da470c9b8e3428be56f /stdio-common/Makefile | |
parent | b8cc607f3c1e8371b89158f427a61f28018604a5 (diff) | |
download | glibc-3d7d5c10c806ee24f8e35014e41e203002609a3f.tar glibc-3d7d5c10c806ee24f8e35014e41e203002609a3f.tar.gz glibc-3d7d5c10c806ee24f8e35014e41e203002609a3f.tar.bz2 glibc-3d7d5c10c806ee24f8e35014e41e203002609a3f.zip |
errlist: add missing entry for EDEADLOCK (bug 29545)
Some architectures (mips, powerpc and sparc) define separate values for
EDEADLOCK and EDEADLK. Readd the errlist entry for EDEADLOCK for those
configurations. Also use the dependency files from generating the
auxiliary errlist and siglist files.
Diffstat (limited to 'stdio-common/Makefile')
-rw-r--r-- | stdio-common/Makefile | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/stdio-common/Makefile b/stdio-common/Makefile index e11aaedd96..9c98c02884 100644 --- a/stdio-common/Makefile +++ b/stdio-common/Makefile @@ -267,6 +267,10 @@ $(objpfx)errlist-data-aux.S: errlist-data-gen.c $(make-target-directory) $(compile-command.c) $(pie-default) $(no-stack-protector) -S +ifndef no_deps +-include $(objpfx)errlist-data-aux.S.d $(objpfx)errlist-data-aux-shared.S.d +endif + $(objpfx)errlist-data.os: $(objpfx)errlist-data-aux-shared.S $(objpfx)errlist-data.o: $(objpfx)errlist-data-aux.S @@ -278,6 +282,10 @@ $(objpfx)siglist-aux.S: siglist-gen.c $(make-target-directory) $(compile-command.c) $(pie-default) $(no-stack-protector) -S +ifndef no_deps +-include $(objpfx)siglist-aux.S.d $(objpfx)siglist-aux-shared.S.d +endif + $(objpfx)siglist.os: $(objpfx)siglist-aux-shared.S $(objpfx)siglist.o: $(objpfx)siglist-aux.S |