Re: libtool is not removed in 1.4f, but is removed in 1.4-p4

2001-06-15 Thread Kevin Dalley
for creating libtool, lib_LTLIBRARIES should not be necessary for removing libtool. #! /bin/sh # Make sure libtool is removed. # Report from Kevin Dalley . $srcdir/defs || exit 1 cat configure.in 'END' AC_LIBTOOL_DLOPEN AC_DISABLE_SHARED AC_PROG_LIBTOOL AC_SUBST(LIBTOOL_DEPS) END : ltmain.sh

Re: problems with mdate-sh and version.texi without AC_CONFIG_AUX_DIR in 1.4f

2001-06-15 Thread Kevin Dalley
This test looks good. The test fails in 1.4f, but succeeds in the latest CVS release. The newer version of automake also solves the problem in findutils which I had. Thanks. Tom Tromey [EMAIL PROTECTED] writes: Kevin == Kevin Dalley [EMAIL PROTECTED] writes: Kevin If AC_CONFIG_AUX_DIR

libtool is not removed in 1.4f, but is removed in 1.4-p4

2001-06-14 Thread Kevin Dalley
AC_PROG_LIBTOOL AC_SUBST(LIBTOOL_DEPS) -- Kevin Dalley [EMAIL PROTECTED]

missing does not support configure.ac in CVS or in 1.4-p4

2001-06-10 Thread Kevin Dalley
archive site. find . -type f -name Makefile.am -print | -- Kevin Dalley [EMAIL PROTECTED]

Re: 1.4-p1 chokes after autoupdate

2001-05-24 Thread Kevin Dalley
; -- by Rocket to the Moon, by Airplane to the Rocket, by Taxi to the Airport, by Frontdoor to the Taxi, by throwing back the blanket and laying down the legs ... - They Might Be Giants -- Kevin Dalley SETI Institute [EMAIL PROTECTED]

distcheck fails with distcheck-hook in automake-1.4-p1

2001-05-24 Thread Kevin Dalley
of the packages automake depends on: ii autoconf 2.50-1 automatic configure script builder ii autotools-dev20010511.2 Update infrastructure for config.{guess,sub} files -- Kevin Dalley [EMAIL PROTECTED]

Missing DESTDIR in Makefile.am install-data-hook in 1.4-p1

2001-05-21 Thread Kevin Dalley
; \ + chmod +x $(DESTDIR)$(scriptdir)/$$prog; \ done EXTRA_DIST = acinstall $(pkgdata_DATA) $(script_DATA) # The following requires a fixed version of the Emacs 19.30 etags. ETAGS_ARGS = automake.in aclocal.in --lang=none \ -- Kevin Dalley [EMAIL PROTECTED]

Re: Problems with BUILT_SOURCES and ansi2knr with CVS automake

2000-04-10 Thread Kevin Dalley
(.*)\.[cly]$/ -f "$relative_dir/$file") + if ($file =~ /^(.*)\.[cly]$/) { $de_ansi_files{$1} = 1; } Kevin Dalley [EMAIL PROTECTED] writes: I installed a new version of automake from CVS. I have the following lines, among many others, in my Makefile.am:

Problems with BUILT_SOURCES and ansi2knr with CVS automake

2000-04-07 Thread Kevin Dalley
) `if test -f $(srcdir)/stat.c; then echo $(srcdir)/stat.c; else echo stat.c; fi` | sed 's/^# \([0-9]\)/#line \1/' | $(ANSI2KNR) stat_.c However, the latest version of automake doesn't do this any more. Similar lines are created for ".c" files in *_SOURCES, so not everything is broken.