[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
CVS version test failures on cygwin
From: |
Charles S. Wilson |
Subject: |
CVS version test failures on cygwin |
Date: |
Fri, 20 Jul 2001 19:33:01 -0400 |
User-agent: |
Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; m18) Gecko/20001108 Netscape6/6.0 |
I just built automake from CVS and ran the tests, and the following ones
failed. Having never built (or used) automake before, I don't know how
serious this is -- but my search of the mailing list revealed that 1.5
is going to come out very soon, so I figured I should report it.
lex3
distname
pr9
pr87
subobj5
subobj6
subdir5
This is on cygwin-1.3.2, perl-5.6.1 ( I used the buildscript below --
which I run from /usr/src/automake/obj/ . The source from CVS is in
/usr/src/automake/automake.
--Chuck
#!/bin/sh
export src=/usr/src/automake/automake
export obj=/usr/src/automake/obj
export inst=/usr/src/automake/inst
host=i686-pc-cygwin
target=i686-pc-cygwin
case $1 in
conf*) ${src}/configure --host=${host} --target=${target} \
--srcdir=${src} --prefix=/usr \
--exec-prefix=/usr --sysconfdir=/etc --libdir=/usr/lib \
--includedir=/nonexistent/include
;;
build*) make CFLAGS=-O2 tooldir=/usr
make info CFLAGS=-O2 tooldir=/usr
;;
check*) make CFLAGS=-O2 tooldir=/usr check
;;
clean*) make CFLAGS=-O2 tooldir=/usr clean
;;
install*) make install prefix=$inst/usr exec_prefix=$inst/usr \
bindir=$inst/usr/bin libdir=$inst/usr/lib \
sysconfdir=$inst/etc includedir=$inst/usr/include \
tooldir=$inst/usr
make install-info prefix=$inst/usr exec_prefix=$inst/usr \
bindir=$inst/usr/bin libdir=$inst/usr/lib \
sysconfdir=$inst/etc includedir=$inst/usr/include \
tooldir=$inst/usr
rm -f $inst/usr/info/dir
;;
strip*) (cd ${inst} ; find . -name "*.exe" | xargs strip )
;;
package*) (cd ${inst} ; tar cvjf ../automake-new.tar.bz2 usr/ )
;;
*) echo 'argument required: configure, build, install, strip, package'
echo ' [check, clean]'
;;
esac
- CVS version test failures on cygwin,
Charles S. Wilson <=