daniel@ux1.cso.uiuc.edu (02/23/90)
While attempting to install gcc 1.37 on a Sequent Symmetry
running Dynix I ran into a problem while doing the make install
The Dynix /usr/bin/install does NOT copy the basename of a file when
the destination is a directory, it copies the entire name!
The fix is easy. Change:
$(INSTALL) $${eachfile} $(libdir)/gcc-include; \
To:
$(INSTALL) $${eachfile} $(libdir)/gcc-include/`basename $${eachfile}`; \
Would this hurt any other operating system? Could this be placed in
the standard Makefile for gcc in the future?
Thanks,
-- Daniel Pommert.
pommert@uiuc.edu