aboutsummaryrefslogtreecommitdiff
path: root/libstdc++/Makefile.in
diff options
context:
space:
mode:
authorJeffrey A Law <law@cygnus.com>1997-11-27 08:37:59 +0000
committerJeff Law <law@gcc.gnu.org>1997-11-27 01:37:59 -0700
commitc30555846b010778d01696ab2b4533f08211ea42 (patch)
treefe9538771d83296901598e061b99f90eb5d6b252 /libstdc++/Makefile.in
parent96b0f1fc030bfe1ae57e94018fb2227068dbf213 (diff)
downloadgcc-c30555846b010778d01696ab2b4533f08211ea42.zip
gcc-c30555846b010778d01696ab2b4533f08211ea42.tar.gz
gcc-c30555846b010778d01696ab2b4533f08211ea42.tar.bz2
* Makefile.in (install): Change gxx_includedir to gxx_include_dir.
From-SVN: r16785
Diffstat (limited to 'libstdc++/Makefile.in')
-rw-r--r--libstdc++/Makefile.in20
1 files changed, 10 insertions, 10 deletions
diff --git a/libstdc++/Makefile.in b/libstdc++/Makefile.in
index 48a470c..2989178 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