[Doxygen-develop] ./configure bug in doxygen-1.3-rc1
Brought to you by:
dimitri
From: Ruben G. <ru...@ug...> - 2002-11-21 15:28:49
|
In the Mandrake distribution, number 9 or so, install has moved from=20 package fileutils to package coreutils. The line 290 of the configure script, echo -n " Checking for GNU install tool... " if test "$f_insttool" =3D NO; then install_names=3D"ginstall install" install_dirs=3D"/usr/bin /usr/local/bin /bin /sbin $bin_dirs" install_prog=3DNO install_found=3DNO for i in $install_names; do for j in $install_dirs; do if test -x "$j/$i"; then if test -n "`$j/$i --version 2>/dev/null | grep fileutils`";=20 then <---- This one here install_found=3DYES install_prog=3D"$j/$i" break 2 fi fi done done f_insttool=3D"$install_prog" Should be changed to =20 if test -n "`$j/$i --version 2>/dev/null | grep utils`"; then =20 or to whatever seems more apropiate, so that the install from package=20 coreutils gets accepted. This is the output from my install: #install --version install (coreutils) 4.5.3 Escrito por David MacKenzie. Copyright (C) 2002 Free Software Foundation, Inc. Esto es software libre; vea el c=C3=B3digo fuente para las condiciones de= copia. No hay NINGUNA garant=C3=ADa; ni siquiera de COMERCIABILIDAD o IDONEIDAD = PARA UN FIN DETERMINADO. |