diff options
author | Doug Evans <dje@gnu.org> | 1997-07-21 18:55:54 +0000 |
---|---|---|
committer | Doug Evans <dje@gnu.org> | 1997-07-21 18:55:54 +0000 |
commit | 5408f8d026742ca7b7a41fd497876bdf4cce9924 (patch) | |
tree | e794ada76aa029b0525919c17fc3badb58d77538 /gcc | |
parent | 866aa3b64b91e88a50ebe02bf75c39d368bde1cd (diff) | |
download | gcc-5408f8d026742ca7b7a41fd497876bdf4cce9924.zip gcc-5408f8d026742ca7b7a41fd497876bdf4cce9924.tar.gz gcc-5408f8d026742ca7b7a41fd497876bdf4cce9924.tar.bz2 |
(cstamp-h.in): Use echo instead of touch.
From-SVN: r14513
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/Makefile.in | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gcc/Makefile.in b/gcc/Makefile.in index a9e9469..089c3ef 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -668,11 +668,13 @@ $(srcdir)/configure: $(srcdir)/configure.in # nothing has changed. # It remains in the source directory and is part of the distribution. # This follows what is done in shellutils, fileutils, etc. +# "echo timestamp" is used instead of touch to be consistent with other +# packages that use autoconf (??? perhaps also to avoid problems with patch?). # ??? Newer versions have a maintainer mode that may be useful here. $(srcdir)/config.in: $(srcdir)/cstamp-h.in $(srcdir)/cstamp-h.in: $(srcdir)/configure.in $(srcdir)/acconfig.h cd $(srcdir) && autoheader - touch $(srcdir)/cstamp-h.in + echo timestamp > $(srcdir)/cstamp-h.in config.h: cstamp-h ; @true cstamp-h: config.in config.status CONFIG_HEADERS=config.h:config.in $(SHELL) config.status |