From: Roland McGrath Date: Thu, 6 Jun 1996 17:02:44 +0000 (+0000) Subject: Thu Jun 6 12:56:03 1996 Roland McGrath X-Git-Tag: upstream/2.30~29408 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e60062b76983ec534a6cb2ca77c664e3bc1e29e7;p=external%2Fglibc.git Thu Jun 6 12:56:03 1996 Roland McGrath * Makerules (headers): Move append of $(sysdep_headers) after include of sysdep makefiles. * sysdeps/mach/hurd/errlist.c: File removed. --- diff --git a/ChangeLog b/ChangeLog index f1712a5..970be16 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +Thu Jun 6 12:56:03 1996 Roland McGrath + + * Makerules (headers): Move append of $(sysdep_headers) after include + of sysdep makefiles. + + * sysdeps/mach/hurd/errlist.c: File removed. + Thu Jun 6 07:32:14 1996 Miles Bader * resolv/gethnamaddr.c (struct hstorage): Make NAME field a pointer. diff --git a/Makerules b/Makerules index 36ad9d1..32bb8bc 100644 --- a/Makerules +++ b/Makerules @@ -36,8 +36,6 @@ ifneq "$(findstring env,$(origin sources))" "" sources := endif -headers := $(headers) $(sysdep_headers) - oPATH := $(PATH) PATH := this definition should take precedence over $(oPATH) ifeq ($(PATH),$(oPATH)) @@ -295,6 +293,8 @@ override sources := $(addsuffix .c,$(filter-out $(elided-routines),\ $(sysdep_routines))) sysdep_routines := $(sysdep_routines) +headers := $(headers) $(sysdep_headers) + # This is the list of all object files, gotten by # replacing every ".c" in `sources' with a ".o". override objects := $(addprefix $(objpfx),$(sources:.c=.o))