Commit 49ba557e by Richard Stallman

Comment changes.

From-SVN: r4633
parent 163674a7
...@@ -151,7 +151,7 @@ bindir = $(exec_prefix)/bin ...@@ -151,7 +151,7 @@ bindir = $(exec_prefix)/bin
libdir = $(exec_prefix)/lib libdir = $(exec_prefix)/lib
# Directory in which the compiler finds executables, libraries, etc. # Directory in which the compiler finds executables, libraries, etc.
libsubdir = $(libdir)/gcc-lib/$(target)/$(version) libsubdir = $(libdir)/gcc-lib/$(target)/$(version)
# Directory for header file assert.h. # Directory to search for site-specific includes.
includedir = $(local_prefix)/include includedir = $(local_prefix)/include
# assertdir is overridden in cross-make. # assertdir is overridden in cross-make.
# (But this currently agrees with what is in cross-make.) # (But this currently agrees with what is in cross-make.)
...@@ -1688,10 +1688,13 @@ install-headers-tar: stmp-headers install-include-dir ...@@ -1688,10 +1688,13 @@ install-headers-tar: stmp-headers install-include-dir
install-headers-cpio: stmp-headers install-include-dir install-headers-cpio: stmp-headers install-include-dir
cd include; find . -print | cpio -pdum $(libsubdir)/include cd include; find . -print | cpio -pdum $(libsubdir)/include
# Put assert.h in /usr/local/include, so it won't override GNU libc's assert.h. # Put assert.h where it won't override GNU libc's assert.h.
# Don't replace the assert.h already there if it is not from GCC. # It goes in a dir that is searched after GNU libc's headers;
# This code would be simpler if it tested for -f ... && ! grep ... # thus, the following conditionals are no longer needed.
# but supposedly the ! operator is missing in sh on some systems. # But it's not worth deleting them now.
## Don't replace the assert.h already there if it is not from GCC.
## This code would be simpler if it tested for -f ... && ! grep ...
## but supposedly the ! operator is missing in sh on some systems.
install-assert-h: assert.h install-dir install-assert-h: assert.h install-dir
if [ -f $(assertdir)/assert.h ]; \ if [ -f $(assertdir)/assert.h ]; \
then \ then \
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment