summaryrefslogtreecommitdiff
path: root/sysdeps/gnu
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2005-12-20 04:13:54 +0000
committerUlrich Drepper <drepper@redhat.com>2005-12-20 04:13:54 +0000
commitfc3480d3eea6380ea00d150d87830dc3cb86ede8 (patch)
treee891cd9da21b16fe81d0884fa35caf8161da4a33 /sysdeps/gnu
parent915a6c51c5d8127e87ef797ee23e04e4f92b4c4f (diff)
* sysdeps/gnu/Makefile: Make sure the correct errlist.c file is
used when generating errlist-compat.c.
Diffstat (limited to 'sysdeps/gnu')
-rw-r--r--sysdeps/gnu/Makefile10
1 files changed, 6 insertions, 4 deletions
diff --git a/sysdeps/gnu/Makefile b/sysdeps/gnu/Makefile
index a0b3e6e420..2b3194f04a 100644
--- a/sysdeps/gnu/Makefile
+++ b/sysdeps/gnu/Makefile
@@ -1,4 +1,4 @@
-# Copyright (C) 1996,1997,1998,1999,2001,2002,2003,2004
+# Copyright (C) 1996,1997,1998,1999,2001,2002,2003,2004, 2005
# Free Software Foundation, Inc.
# This file is part of the GNU C Library.
@@ -32,12 +32,14 @@ endif
ifeq ($(subdir),stdio-common)
-vpath errlist.c $(full_config_sysdirs)
+errlist-c = $(firstword $(wildcard $(addsuffix /errlist.c, \
+ $(full_config_sysdirs) .)))
+
ifeq ($(versioning),yes)
-$(objpfx)errlist-compat.c: errlist.c $(..)sysdeps/gnu/errlist-compat.awk \
+$(objpfx)errlist-compat.c: $(errlist-c) $(..)sysdeps/gnu/errlist-compat.awk \
$(common-objpfx)Versions.v.i $(before-compile)
else
-$(objpfx)errlist-compat.c: errlist.c $(..)sysdeps/gnu/errlist-compat.awk \
+$(objpfx)errlist-compat.c: $(errlist-c) $(..)sysdeps/gnu/errlist-compat.awk \
$(before-compile)
endif
$(make-target-directory)