aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Stallman <rms@gnu.org>1993-06-05 08:10:50 +0000
committerRichard Stallman <rms@gnu.org>1993-06-05 08:10:50 +0000
commit49ba557ea204dae80f6a847a0c9b5a276dd7d66e (patch)
tree6bae1abb57256496cdf9448f802925ba030bd3fd
parent163674a7f1a3bbc38a699dee6b2438afbd9313bc (diff)
downloadgcc-49ba557ea204dae80f6a847a0c9b5a276dd7d66e.zip
gcc-49ba557ea204dae80f6a847a0c9b5a276dd7d66e.tar.gz
gcc-49ba557ea204dae80f6a847a0c9b5a276dd7d66e.tar.bz2
Comment changes.
From-SVN: r4633
-rw-r--r--gcc/Makefile.in13
1 files changed, 8 insertions, 5 deletions
diff --git a/gcc/Makefile.in b/gcc/Makefile.in
index 6a64ab2..405b39d 100644
--- a/gcc/Makefile.in
+++ b/gcc/Makefile.in
@@ -151,7 +151,7 @@ bindir = $(exec_prefix)/bin
libdir = $(exec_prefix)/lib
# Directory in which the compiler finds executables, libraries, etc.
libsubdir = $(libdir)/gcc-lib/$(target)/$(version)
-# Directory for header file assert.h.
+# Directory to search for site-specific includes.
includedir = $(local_prefix)/include
# assertdir is overridden 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
install-headers-cpio: stmp-headers install-include-dir
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.
-# 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.
+# Put assert.h where it won't override GNU libc's assert.h.
+# It goes in a dir that is searched after GNU libc's headers;
+# thus, the following conditionals are no longer needed.
+# 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
if [ -f $(assertdir)/assert.h ]; \
then \