From 64b6a1a4e490c2077c57f05de9c798458bfb28ec Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Sat, 31 Aug 2002 18:23:37 +0000 Subject: [PATCH] Only depend on Versions.v.i for errlist-compat.c if build-shared==yes. --- sysdeps/gnu/Makefile | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/sysdeps/gnu/Makefile b/sysdeps/gnu/Makefile index 048e36a..14c74be 100644 --- a/sysdeps/gnu/Makefile +++ b/sysdeps/gnu/Makefile @@ -32,9 +32,12 @@ endif ifeq ($(subdir),stdio-common) vpath errlist.c $(full_config_sysdirs) -$(objpfx)errlist-compat.c: errlist.c \ - $(..)sysdeps/gnu/errlist-compat.awk \ - $(common-objpfx)Versions.v.i +ifeq ($(build-shared),yes) +$(objpfx)errlist-compat.c: errlist.c $(..)sysdeps/gnu/errlist-compat.awk \ + $(common-objpfx)Versions.v.i +else +$(objpfx)errlist-compat.c: errlist.c $(..)sysdeps/gnu/errlist-compat.awk +endif $(AWK) -v maxerr=`\ $(CC) -S $(CPPFLAGS) $(CFLAGS) -DNOT_IN_libc -DEMIT_ERR_MAX $< -o - \ | sed -n 's/^.*@@@[^0-9]*\([0-9]*\)[^0-9]*@@@.*$$/\1/p'` \ -- 2.7.4