diff options
author | Tom Tromey <tromey@redhat.com> | 1996-04-25 02:42:17 +0000 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 1996-04-25 02:42:17 +0000 |
commit | 20de88a6bd30179841d73782bed02225669d4180 (patch) | |
tree | 660419d590fccedab9e4d36331c5d5eb96f79afc | |
parent | a3657dee64bbd3fa867b9824d2295a61ef187257 (diff) | |
download | automake-20de88a6bd30179841d73782bed02225669d4180.tar.gz |
Fixlets
-rw-r--r-- | ChangeLog | 10 | ||||
-rw-r--r-- | INSTALL | 2 | ||||
-rw-r--r-- | THANKS | 1 | ||||
-rw-r--r-- | TODO | 11 | ||||
-rwxr-xr-x | automake.in | 5 | ||||
-rw-r--r-- | lib/INSTALL | 2 |
6 files changed, 25 insertions, 6 deletions
@@ -1,3 +1,13 @@ +Wed Apr 24 20:29:26 1996 Tom Tromey <tromey@creche.cygnus.com> + + * automake.in (am_install_var): Use delete, not undef, to remove + EXTRA entry. From Gord Matzigkeit. + +Mon Apr 22 17:48:50 1996 Tom Tromey <tromey@creche.cygnus.com> + + * automake.in (read_am_file): Handle case where last line doesn't + end in newline. + Tue Apr 9 22:53:16 1996 Tom Tromey <tromey@creche.cygnus.com> * automake.in (variable_defined): New function. @@ -31,7 +31,7 @@ The simplest way to compile this package is: `sh ./configure' instead to prevent `csh' from trying to execute `configure' itself. - Running `configure' takes awhile. While running, it prints some + Running `configure' takes a while. While running, it prints some messages telling which features it is checking for. 2. Type `make' to compile the package. @@ -11,6 +11,7 @@ Jerome Santini <santini@chambord.univ-orleans.fr> Jim Meyering <meyering@na-net.ornl.gov> Joerg-Martin Schwarz <jms@jms.prima.ruhr.de> Karl Berry <kb@cs.umb.edu> +Mark Galassi <rosalia@nis.lanl.gov> Markku Rossi <mtr@ngs.fi> Noah Friedman <friedman@gnu.ai.mit.edu> Ulrich Drepper <drepper@gnu.ai.mit.edu> @@ -1,8 +1,11 @@ Priorities for release: +??? targets for EXTRA_ should not be generated!!! * Fix all mkinstalldirs invocations -* Make sure each use of variable gets a variable and not a target -* If comments at start of file, ensure that whitespace follows - auto-generated comments +* separate dist and distdir targets, so recursive uses of Automake work ok + +* Add no-remake option +* scripts are installed in $exec_prefix/bin, not $prefix/bin + Bug or feature? * Add support for libtool * At top level, config.h is not depended on... @@ -24,6 +27,8 @@ Things to finish libtool support: * Handle clean changes * New definition for LINK +* search for gnu tar and substitute in dist targets? + Scan source directories and warn about missing files, eg .c/.h files that aren't mentioned? diff --git a/automake.in b/automake.in index 36254acdd..1499d72b4 100755 --- a/automake.in +++ b/automake.in @@ -2177,6 +2177,9 @@ sub read_am_file local ($is_ok_macro); while ($_) { + $_ .= "\n" + unless substr ($_, -1, 1) eq "\n"; + if (/$IGNORE_PATTERN/o) { # Merely delete comments beginning with two hashes. @@ -2592,7 +2595,7 @@ sub am_install_var } } # We never want to examine EXTRA_blah. - undef $valid{'EXTRA'}; + delete $valid{'EXTRA'}; local ($clean_file) = $file . '-clean'; local ($one_name); diff --git a/lib/INSTALL b/lib/INSTALL index 95d84c820..3b50ea957 100644 --- a/lib/INSTALL +++ b/lib/INSTALL @@ -31,7 +31,7 @@ The simplest way to compile this package is: `sh ./configure' instead to prevent `csh' from trying to execute `configure' itself. - Running `configure' takes awhile. While running, it prints some + Running `configure' takes a while. While running, it prints some messages telling which features it is checking for. 2. Type `make' to compile the package. |