diff options
author | Roland McGrath <roland@gnu.org> | 1995-04-12 01:03:38 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 1995-04-12 01:03:38 +0000 |
commit | 53afa8d96790cce8fd0d0ce71307bc7ae31c15fb (patch) | |
tree | ca8c58bb02b0d0fccc45e63708a775836c1cbe7e /manual/Makefile | |
parent | 217d85b9c89bc7d6e2c2db7fa93238a6b6f12d73 (diff) | |
download | glibc-53afa8d96790cce8fd0d0ce71307bc7ae31c15fb.tar.gz glibc-53afa8d96790cce8fd0d0ce71307bc7ae31c15fb.tar.xz glibc-53afa8d96790cce8fd0d0ce71307bc7ae31c15fb.zip |
Tue Apr 11 20:38:55 1995 Roland McGrath <roland@churchy.gnu.ai.mit.edu> cvs/libc-950411
* sysdeps/i386/add_n.S [PIC]: Use self-call to avoid generating reloc. * sysdeps/i386/sub_n.S [PIC]: Likewise. * libc-symbols.h (_elf_set_element) [PIC]: Don't make the element word `const'. * Makeconfig (CPPFLAGS, CFLAGS): Fix swapped references to $(foo-$(suffix $@)). * manual/Makefile (chapters-incl): Filter out summary.texi.
Diffstat (limited to 'manual/Makefile')
-rw-r--r-- | manual/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/manual/Makefile b/manual/Makefile index 57e6ae2306..ca930fd481 100644 --- a/manual/Makefile +++ b/manual/Makefile @@ -1,6 +1,6 @@ # Makefile for the GNU C Library manual. -# Copyright (C) 1992, 1993, 1994 Free Software Foundation, Inc. +# Copyright (C) 1992, 1993, 1994, 1995 Free Software Foundation, Inc. # This file is part of the GNU C Library. # The GNU C Library is free software; you can redistribute it and/or @@ -35,11 +35,11 @@ endif include chapters chapters: libc.texinfo $(find-includes) -chapters := $(filter-out summary.texi,$(chapters)) ifdef chapters include chapters-incl chapters-incl: $(chapters) $(find-includes) +chapters-incl := $(filter-out summary.texi,$(chapters-incl)) endif define find-includes |