This is the mail archive of the gcc-bugs@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Installation bug on GCC 3.2.1



Hello,

I found a little bug when installing gcc 3.2.1

My source tree is as follow :

/sources/gcc-3.2.1 (gcc source tree generated by tar xf gcc.tar)
/sources/obj-3.2.1 (where gcc gets compiled)

So, to compile, I do :

cd /sources/obj-3.2.1
sh ../gcc-3.2.1/configure --prefix=/usr/local/gcc-3.2.1 \
	--disable-shared
gmake bootstrap

When installing, I got :
	../../gcc-3.2.1/gcc/../install-sh not found

The problem comes from gcc/intl/Makefile, where I found :

INSTALL = ../../gcc-3.2.1/gcc/../install-sh -c

I replaced this by 

INSTALL = ../../../gcc-3.2.1/gcc/../install-sh -c

and it works !

Sincerely

Jose Marcio




-- 
 ---------------------------------------------------------------
 Jose Marcio MARTINS DA CRUZ    
 Ecole Nationale Superieure des Mines de Paris   
 Centre de Calcul                      Tel. :(33) 01.40.51.93.41
 60, bd Saint Michel                http://www.ensmp.fr/~martins
 75272 - PARIS CEDEX 06      mailto:Jose-Marcio.Martins@ensmp.fr        
 ---------------------------------------------------------------


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]