summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlaw <law@138bc75d-0d04-0410-961f-82ee72b054a4>1997-11-27 08:37:59 +0000
committerlaw <law@138bc75d-0d04-0410-961f-82ee72b054a4>1997-11-27 08:37:59 +0000
commitdcdffd64280fa4b6079db1fe212c153bab7c0e45 (patch)
treefe9538771d83296901598e061b99f90eb5d6b252
parent66e8218060f25f8e12e0ab12cce94e53e879ee22 (diff)
downloadgcc-dcdffd64280fa4b6079db1fe212c153bab7c0e45.tar.gz
* Makefile.in (install): Change gxx_includedir to gxx_include_dir.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@16785 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r--libstdc++/ChangeLog4
-rw-r--r--libstdc++/Makefile.in20
2 files changed, 14 insertions, 10 deletions
diff --git a/libstdc++/ChangeLog b/libstdc++/ChangeLog
index 7830adc0bf2..baf9aaafd96 100644
--- a/libstdc++/ChangeLog
+++ b/libstdc++/ChangeLog
@@ -1,3 +1,7 @@
+Thu Nov 27 01:33:55 1997 Jeffrey A Law (law@cygnus.com)
+
+ * Makefile.in (install): Change gxx_includedir to gxx_include_dir.
+
Tue Nov 25 23:16:44 1997 Jason Merrill <jason@yorick.cygnus.com>
London changes to string:
diff --git a/libstdc++/Makefile.in b/libstdc++/Makefile.in
index 48a470c22b4..298917860cd 100644
--- a/libstdc++/Makefile.in
+++ b/libstdc++/Makefile.in
@@ -249,24 +249,24 @@ install:
if [ -z "$(MULTISUBDIR)" ]; then \
cd $(srcdir); \
for FILE in $(HEADERS); do \
- rm -f $(gxx_includedir)/$$FILE ; \
+ rm -f $(gxx_include_dir)/$$FILE ; \
if [ -f stl/$$FILE ]; then \
- $(INSTALL_DATA) stl/$$FILE $(gxx_includedir)/$$FILE ; \
+ $(INSTALL_DATA) stl/$$FILE $(gxx_include_dir)/$$FILE ; \
else \
- $(INSTALL_DATA) $$FILE $(gxx_includedir)/$$FILE ; \
+ $(INSTALL_DATA) $$FILE $(gxx_include_dir)/$$FILE ; \
fi ; \
- chmod a-x $(gxx_includedir)/$$FILE ; \
+ chmod a-x $(gxx_include_dir)/$$FILE ; \
done ; \
for FILE in *.h std/*.*; do \
- rm -f $(gxx_includedir)/$$FILE ; \
- $(INSTALL_DATA) $$FILE $(gxx_includedir)/$$FILE ; \
- chmod a-x $(gxx_includedir)/$$FILE ; \
+ rm -f $(gxx_include_dir)/$$FILE ; \
+ $(INSTALL_DATA) $$FILE $(gxx_include_dir)/$$FILE ; \
+ chmod a-x $(gxx_include_dir)/$$FILE ; \
done ; \
cd stl; \
for FILE in *.h; do \
- rm -f $(gxx_includedir)/$$FILE ; \
- $(INSTALL_DATA) $$FILE $(gxx_includedir)/$$FILE ; \
- chmod a-x $(gxx_includedir)/$$FILE ; \
+ rm -f $(gxx_include_dir)/$$FILE ; \
+ $(INSTALL_DATA) $$FILE $(gxx_include_dir)/$$FILE ; \
+ chmod a-x $(gxx_include_dir)/$$FILE ; \
done ; \
else true ; \
fi