diff options
| author | Paul Eggert <eggert@cs.ucla.edu> | 2012-08-01 18:59:19 -0700 |
|---|---|---|
| committer | Paul Eggert <eggert@cs.ucla.edu> | 2012-08-01 18:59:19 -0700 |
| commit | 3f750e43e882ebff19fba2d243873dcdedce1dda (patch) | |
| tree | 45eb57a020fe4ff23ff51042c1fac0c1e2ea9ea8 | |
| parent | e098de975f6e139678b3811388c3bb4f775bfa04 (diff) | |
| download | emacs-3f750e43e882ebff19fba2d243873dcdedce1dda.tar.gz | |
Avoid needless autoheader after autogen.sh.
* src/stamp-h.in: Remove from bzr repository; no longer needed there.
* .bzrignore: Add it.
* autogen.sh: Create it.
| -rw-r--r-- | ChangeLog | 7 | ||||
| -rwxr-xr-x | autogen.sh | 4 | ||||
| -rw-r--r-- | src/stamp-h.in | 1 |
3 files changed, 11 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog index df38ec4e421..943d88822db 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2012-08-02 Paul Eggert <eggert@cs.ucla.edu> + + Avoid needless autoheader after autogen.sh. + * src/stamp-h.in: Remove from bzr repository; no longer needed there. + * .bzrignore: Add it. + * autogen.sh: Create it. + 2012-08-01 Glenn Morris <rgm@gnu.org> * configure.ac (DOS_NT, MSDOS): New system type templates. diff --git a/autogen.sh b/autogen.sh index 0c92047e469..cabaaf014a8 100755 --- a/autogen.sh +++ b/autogen.sh @@ -209,6 +209,10 @@ echo "Your system has the required tools, running autoreconf..." ## Let autoreconf figure out what, if anything, needs doing. autoreconf -i -I m4 || exit $? +## Create a timestamp, so that './autogen.sh; make' doesn't +## cause 'make' to needlessly run 'autoheader'. +echo timestamp > src/stamp-h.in || exit + echo "You can now run \`./configure'." exit 0 diff --git a/src/stamp-h.in b/src/stamp-h.in deleted file mode 100644 index 9788f70238c..00000000000 --- a/src/stamp-h.in +++ /dev/null @@ -1 +0,0 @@ -timestamp |
