mirror of
git://gcc.gnu.org/git/gcc.git
synced 2024-12-17 09:29:09 +08:00
Makefile.am (myinstallheaders): Install backwards headers in prefix, not prefix/backward.
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
This commit is contained in:
parent
1d79fd2c8a
commit
07467d31de
@ -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
|
||||
|
@ -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
|
||||
|
||||
@ -108,9 +105,6 @@
|
||||
/* 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
|
||||
|
||||
@ -126,9 +120,6 @@
|
||||
/* 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
|
||||
|
||||
|
@ -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/"; \
|
||||
|
@ -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/"; \
|
||||
|
Loading…
Reference in New Issue
Block a user