From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Message-ID: <42D38AAF.1000301@altlinux.ru> Date: Tue, 12 Jul 2005 13:17:35 +0400 From: =?KOI8-R?Q?=E1=CE=D4=CF=CE_=E7=CF=D2=CC=CF=D7?= User-Agent: Mozilla Thunderbird 1.0.2 (Windows/20050317) X-Accept-Language: ru-ru, ru MIME-Version: 1.0 To: ALT Devel discussion list Content-Type: multipart/mixed; boundary="------------030101080407080007070408" Subject: [devel] automake X-BeenThere: devel@altlinux.ru X-Mailman-Version: 2.1.5 Precedence: list Reply-To: ALT Devel discussion list List-Id: ALT Devel discussion list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 12 Jul 2005 09:17:43 -0000 Archived-At: List-Archive: List-Post: This is a multi-part message in MIME format. --------------030101080407080007070408 Content-Type: text/plain; charset=KOI8-R; format=flowed Content-Transfer-Encoding: 8bit Как избавиться вот от такой ругани: automake-1.8 [stalker@ring qicoxe]$ ./autogen.sh detected automake-1.8 /usr/share/aclocal/libmcrypt.m4:17: warning: underquoted definition of AM_PATH_LIBMCRYPT run info '(automake)Extending aclocal' or see http://sources.redhat.com/automake/automake.html#Extending%20aclocal Оно в принципи собирается. (рабочесть дома буду проверять.), но не красиво как-то... сам скрипт в аттаче. -- np: silence --------------030101080407080007070408 Content-Type: text/plain; name="autogen.sh" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="autogen.sh" #!/bin/sh -e # # $Id: autogen.sh,v 1.5 2005/05/06 20:54:01 mitry Exp $ # # Run this to update & generate all the automatic things # (thanks spamass-milter for idea) # # hack because some OSes (cough RedHat cough) default to 2.13 even # though a perfectly good 2.5x is available AC= for i in 259 -2.59 258 -2.58 257 -2.57 256 -2.56 255 -2.55 2.55 254 -2.54 2.54 253 -2.53 2.53 do if type autoconf$i >/dev/null 2>&1 ; then AC=$i ; echo detected autoconf$AC ; break fi done AM= for i in 19 -1.9 18 -1.8 17 -1.7 1.6 -1.6 15 -1.5 do if type automake$i >/dev/null 2>&1 ; then AM=$i ; echo detected automake$AM ; break fi done # export these because all 5 need to know the exact name of the other ones AUTOCONF=autoconf$AC ; export AUTOCONF AUTOHEADER=autoheader$AC ; export AUTOHEADER AUTOM4TE=autom4te$AC ; export AUTOM4TE ACLOCAL=aclocal$AM ; export ACLOCAL AUTOMAKE=automake$AM ; export AUTOMAKE rm -rf autom4te* 2>/dev/null $ACLOCAL -I . $AUTOHEADER $AUTOMAKE --copy --add-missing --force-missing $AUTOCONF --force rm -rf autom4te* 2>/dev/null --------------030101080407080007070408--