diff options
| author | Paul Eggert | 2012-08-01 18:59:19 -0700 |
|---|---|---|
| committer | Paul Eggert | 2012-08-01 18:59:19 -0700 |
| commit | 3f750e43e882ebff19fba2d243873dcdedce1dda (patch) | |
| tree | 45eb57a020fe4ff23ff51042c1fac0c1e2ea9ea8 | |
| parent | e098de975f6e139678b3811388c3bb4f775bfa04 (diff) | |
| download | emacs-3f750e43e882ebff19fba2d243873dcdedce1dda.tar.gz emacs-3f750e43e882ebff19fba2d243873dcdedce1dda.zip | |
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
| @@ -1,3 +1,10 @@ | |||
| 1 | 2012-08-02 Paul Eggert <eggert@cs.ucla.edu> | ||
| 2 | |||
| 3 | Avoid needless autoheader after autogen.sh. | ||
| 4 | * src/stamp-h.in: Remove from bzr repository; no longer needed there. | ||
| 5 | * .bzrignore: Add it. | ||
| 6 | * autogen.sh: Create it. | ||
| 7 | |||
| 1 | 2012-08-01 Glenn Morris <rgm@gnu.org> | 8 | 2012-08-01 Glenn Morris <rgm@gnu.org> |
| 2 | 9 | ||
| 3 | * configure.ac (DOS_NT, MSDOS): New system type templates. | 10 | * 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..." | |||
| 209 | ## Let autoreconf figure out what, if anything, needs doing. | 209 | ## Let autoreconf figure out what, if anything, needs doing. |
| 210 | autoreconf -i -I m4 || exit $? | 210 | autoreconf -i -I m4 || exit $? |
| 211 | 211 | ||
| 212 | ## Create a timestamp, so that './autogen.sh; make' doesn't | ||
| 213 | ## cause 'make' to needlessly run 'autoheader'. | ||
| 214 | echo timestamp > src/stamp-h.in || exit | ||
| 215 | |||
| 212 | echo "You can now run \`./configure'." | 216 | echo "You can now run \`./configure'." |
| 213 | 217 | ||
| 214 | exit 0 | 218 | 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 @@ | |||
| 1 | timestamp | ||