Makefile.am (myinstallheaders): Install backwards headers in prefix, not prefix/backward.
authorBenjamin Kosnik <bkoz@gcc.gnu.org>
Fri, 15 Dec 2000 00:55:02 +0000 (00:55 +0000)
committerBenjamin Kosnik <bkoz@gcc.gnu.org>
Fri, 15 Dec 2000 00:55:02 +0000 (00:55 +0000)
2000-12-14  Benjamin Kosnik  <bkoz@fillmore.redhat.com>

* src/Makefile.am (myinstallheaders): Install backwards headers in
prefix, not prefix/backward.
* src/Makefile.in: Regenerate.

From-SVN: r38265

libstdc++-v3/ChangeLog
libstdc++-v3/config.h.in
libstdc++-v3/src/Makefile.am
libstdc++-v3/src/Makefile.in

index 1c7a054..a2a4268 100644 (file)
@@ -1,3 +1,9 @@
+2000-12-14  Benjamin Kosnik  <bkoz@fillmore.redhat.com>
+
+       * src/Makefile.am (myinstallheaders): Install backwards headers in
+       prefix, not prefix/backward.
+       * src/Makefile.in: Regenerate.
+
 2000-12-14  Benjamin Kosnik  <bkoz@haight.redhat.com>
 
        * acinclude.m4 (GLIBCPP_CHECK_MATH_SUPPORT): Revert changes
@@ -12,7 +18,7 @@
        * mknumeric_limits (CXX): Use BUILD_DIR/g++, not g++ in
        path. Consistency with tests_flags.in.
 
-2000-12-14  Benjamin Kosnik  <bkoz@redhat.com>
+2000-12-14  Benjamin Kosnik  <bkoz@haight.redhat.com>
 
        * include/c/bits/*.h: Remove include_next, replace with include,
        as include_next does not work host-x-host, and include_next not
index ce72a7e..5f32f43 100644 (file)
@@ -87,9 +87,6 @@
 /* Define if you have the _asinl function.  */
 #undef HAVE__ASINL
 
-/* Define if you have the _atan2f function.  */
-#undef HAVE__ATAN2F
-
 /* Define if you have the _atan2l function.  */
 #undef HAVE__ATAN2L
 
 /* Define if you have the _copysign function.  */
 #undef HAVE__COPYSIGN
 
-/* Define if you have the _copysignf function.  */
-#undef HAVE__COPYSIGNF
-
 /* Define if you have the _copysignl function.  */
 #undef HAVE__COPYSIGNL
 
 /* Define if you have the _cosl function.  */
 #undef HAVE__COSL
 
-/* Define if you have the _expf function.  */
-#undef HAVE__EXPF
-
 /* Define if you have the _expl function.  */
 #undef HAVE__EXPL
 
index 0f86e26..2a53621 100644 (file)
@@ -21,7 +21,7 @@
 ## Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307,
 ## USA.
 
-## $Id: Makefile.am,v 1.56 2000/12/06 03:05:12 bkoz Exp $
+## $Id: Makefile.am,v 1.57 2000/12/10 20:51:22 apbianco Exp $
 
 AUTOMAKE_OPTIONS = 1.3 gnits
 MAINT_CHARSET = latin1
@@ -252,7 +252,6 @@ install-data-local: myinstalldirs myinstallheaders
 myinstalldirs:
        if test -z "$(MULTISUBDIR)"; then \
        $(mkinstalldirs) $(DESTDIR)$(myincludep)/bits; \
-       $(mkinstalldirs) $(DESTDIR)$(myincludep)/backward; \
        $(mkinstalldirs) $(DESTDIR)$(myincludep)/ext; \
        fi
 
@@ -273,8 +272,8 @@ myinstallheaders:
          $(INSTALL_DATA) $(src_incdir)/$$i $(myincludep)/ext/; \
        done; \
        for i in $(backward_headers); do \
-        echo "$(INSTALL_DATA) $(src_incdir)/$$i $(myincludep)/backward/"; \
-         $(INSTALL_DATA) $(src_incdir)/$$i $(myincludep)/backward/; \
+        echo "$(INSTALL_DATA) $(src_incdir)/$$i $(myincludep)"; \
+         $(INSTALL_DATA) $(src_incdir)/$$i $(myincludep); \
        done; \
        for i in $(c_base_headers); do \
         echo "$(INSTALL_DATA) $(c_incdir)/$$i $(myincludep)/bits/"; \
index 56eabec..0297121 100644 (file)
@@ -525,7 +525,6 @@ install-data-local: myinstalldirs myinstallheaders
 myinstalldirs:
        if test -z "$(MULTISUBDIR)"; then \
        $(mkinstalldirs) $(DESTDIR)$(myincludep)/bits; \
-       $(mkinstalldirs) $(DESTDIR)$(myincludep)/backward; \
        $(mkinstalldirs) $(DESTDIR)$(myincludep)/ext; \
        fi
 myinstallheaders: 
@@ -539,8 +538,8 @@ myinstallheaders:
          $(INSTALL_DATA) $(src_incdir)/$$i $(myincludep)/ext/; \
        done; \
        for i in $(backward_headers); do \
-        echo "$(INSTALL_DATA) $(src_incdir)/$$i $(myincludep)/backward/"; \
-         $(INSTALL_DATA) $(src_incdir)/$$i $(myincludep)/backward/; \
+        echo "$(INSTALL_DATA) $(src_incdir)/$$i $(myincludep)"; \
+         $(INSTALL_DATA) $(src_incdir)/$$i $(myincludep); \
        done; \
        for i in $(c_base_headers); do \
         echo "$(INSTALL_DATA) $(c_incdir)/$$i $(myincludep)/bits/"; \