diff options
author | Ulrich Drepper <drepper@redhat.com> | 2002-08-31 18:23:37 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2002-08-31 18:23:37 +0000 |
commit | 64b6a1a4e490c2077c57f05de9c798458bfb28ec (patch) | |
tree | d84914ea3292df21e5d780b8b3f34530d0e845a7 /sysdeps/gnu/Makefile | |
parent | 78df0fcb80247ca7573a8ed07cc992b7031674c1 (diff) | |
download | glibc-64b6a1a4e490c2077c57f05de9c798458bfb28ec.tar.gz glibc-64b6a1a4e490c2077c57f05de9c798458bfb28ec.tar.xz glibc-64b6a1a4e490c2077c57f05de9c798458bfb28ec.zip |
Only depend on Versions.v.i for errlist-compat.c if build-shared==yes.
Diffstat (limited to 'sysdeps/gnu/Makefile')
-rw-r--r-- | sysdeps/gnu/Makefile | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/sysdeps/gnu/Makefile b/sysdeps/gnu/Makefile index 048e36a415..14c74be2f0 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'` \ |