]> git.ipfire.org Git - thirdparty/automake.git/commitdiff
Bug fix
authorTom Tromey <tromey@redhat.com>
Wed, 4 Sep 1996 01:14:22 +0000 (01:14 +0000)
committerTom Tromey <tromey@redhat.com>
Wed, 4 Sep 1996 01:14:22 +0000 (01:14 +0000)
ChangeLog
TODO
m4/AM_PROG_INSTALL.m4

index c6eaae020d3ad080820fe9a22aee20f69d230a7d..4fa3ca0445248ed50fb52ba2095959089cf18979 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Tue Sep  3 18:50:32 1996  Tom Tromey  <tromey@creche.cygnus.com>
+
+       * m4/AM_PROG_INSTALL.m4: INSTALL_SCRIPT defaults to
+       ${INSTALL_PROGRAM}.  From François Pinard.
+
 Tue Aug 27 08:25:05 1996  Tom Tromey  <tromey@creche.cygnus.com>
 
        * automake.in (file_contents_with_transform): Correctly remove
diff --git a/TODO b/TODO
index cda584c625517dbc42ea9bec63c81c00f2ca67cb..b75cab05e1c9a85c4a5e9d3cad5abc15efb5d65b 100644 (file)
--- a/TODO
+++ b/TODO
@@ -7,6 +7,11 @@ Priorities for release:
 !! remove autosystem-specific macros
 !! should write autoconf-style doc entries for each m4 macro
 
+Joel> I know that the following is needed at the end of configure.in:
+Joel>         [test -z "$CONFIG_HEADERS" || echo timestamp >stamp-h])
+Joel> However, if automake checked that this line is present, it would
+Joel> help...this bit me for a while.
+
 Jim's idea: should look for @setfilename and warn if filenames too long
 * guess split size
 * allow ".info" to be missing
@@ -298,6 +303,8 @@ go through handle_configure and make sure each macro is documented in
 the appropriate place.  Clean up ordering in document.  Add info about
 AM_ macros.
 
+should write more complete explanation of implicit copying semantics
+
 finish yacc, lex, c++ nodes
 
 Document customary ordering of Makefile.am.  From François.
index 75831fac2d6fcb4f5a949d85aefa1ec9b2e763af..78b04921761bbaf326cc6745f386ef685d38ff94 100644 (file)
@@ -8,6 +8,6 @@
 
 AC_DEFUN(AM_PROG_INSTALL,
 [AC_REQUIRE([AC_PROG_INSTALL])
-test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL} -m 755'
+test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL_PROGRAM}'
 AC_SUBST(INSTALL_SCRIPT)dnl
 ])