>Хочу перекомпилировать sendmail - захожу в
>дир с исходниками и набираю
>./Build в ответ command not
>found
>А если make или make install
>- то опять же ругается
>что нету Build!
>Подскажите - как его доустановить?
>Тоже и с ядром...
Если нет, какие наши годы. Создадим.
Создаешь текстовый файл Build, можешь скопировать уже готовый и пишешь в него:
#!/bin/sh
# Copyright (c) 1998, 1999 Sendmail, Inc. and its suppliers.
# All rights reserved.
#
# By using this file, you agree to the terms and conditions set
# forth in the LICENSE file which can be found at the top level of
# the sendmail distribution.
#
#
# $Id: Build,v 8.7 1999/03/02 02:37:12 peterh Exp $
#
#
# A quick-and-dirty script to create cf files.
#
SMROOT=${SMROOT-../..}
BUILDTOOLS=${BUILDTOOLS-$SMROOT/devtools}
M4=/usr/bin/m4
ret=$?
if [ $ret -ne 0 ]
then
exit $ret
fi
eval exec ${MAKE-make} M4=$M4 $*
делаешь атрибуты root root -rwxr-xr-x
и переписываешь по пути типа usr/lib/sendmail-cf/cf или куда то туда.
Вот и все.