diff options
| author | Miles Bader | 2007-08-27 04:00:19 +0000 |
|---|---|---|
| committer | Miles Bader | 2007-08-27 04:00:19 +0000 |
| commit | 7f22a76506a3f3db2eb4bce1cfc49105bd8d0824 (patch) | |
| tree | 02ffae400506ae46fcf03eacaa5210aac7fe57de /lib-src | |
| parent | d53a60a6f76043ba9fb395eece2aaccc67a0d1b2 (diff) | |
| parent | 619fb9ee822da1d92d8b7974b827dac6a918967f (diff) | |
| download | emacs-7f22a76506a3f3db2eb4bce1cfc49105bd8d0824.tar.gz emacs-7f22a76506a3f3db2eb4bce1cfc49105bd8d0824.zip | |
Merge from emacs--rel--22
Patches applied:
* emacs--rel--22 (patch 97-100)
- Update from CVS
- Merge from gnus--rel--5.10
* gnus--rel--5.10 (patch 246-247)
- Update from CVS
Revision: emacs@sv.gnu.org/emacs--devo--0--patch-860
Diffstat (limited to 'lib-src')
| -rw-r--r-- | lib-src/ChangeLog | 6 | ||||
| -rw-r--r-- | lib-src/Makefile.in | 13 |
2 files changed, 14 insertions, 5 deletions
diff --git a/lib-src/ChangeLog b/lib-src/ChangeLog index 2f4b58ab7a6..9d7d076ca46 100644 --- a/lib-src/ChangeLog +++ b/lib-src/ChangeLog | |||
| @@ -1,3 +1,9 @@ | |||
| 1 | 2007-08-25 Eli Zaretskii <eliz@gnu.org> | ||
| 2 | |||
| 3 | * Makefile.in (rcs2log, rcs-checkin, grep-changelog, vcdiff): | ||
| 4 | Prepend "-" to the command, in case srcdir=. and file is copied | ||
| 5 | into itself. | ||
| 6 | |||
| 1 | 2007-07-25 Glenn Morris <rgm@gnu.org> | 7 | 2007-07-25 Glenn Morris <rgm@gnu.org> |
| 2 | 8 | ||
| 3 | * Relicense all FSF files to GPLv3 or later. | 9 | * Relicense all FSF files to GPLv3 or later. |
diff --git a/lib-src/Makefile.in b/lib-src/Makefile.in index 1482ea6c5df..5d8da71dbdd 100644 --- a/lib-src/Makefile.in +++ b/lib-src/Makefile.in | |||
| @@ -268,18 +268,21 @@ BASE_CFLAGS = C_SWITCH_SYSTEM C_SWITCH_MACHINE -DHAVE_CONFIG_H \ | |||
| 268 | all: ${DONT_INSTALL} ${UTILITIES} ${INSTALLABLES} ${SCRIPTS} ${INSTALLABLE_SCRIPTS} | 268 | all: ${DONT_INSTALL} ${UTILITIES} ${INSTALLABLES} ${SCRIPTS} ${INSTALLABLE_SCRIPTS} |
| 269 | 269 | ||
| 270 | /* These targets copy the scripts into the build directory | 270 | /* These targets copy the scripts into the build directory |
| 271 | so that they can be run from there in an uninstalled Emacs. */ | 271 | so that they can be run from there in an uninstalled Emacs. |
| 272 | The "-" is prepended because some versions of cp barf when | ||
| 273 | srcdir is the current directory, and thus the file will be | ||
| 274 | copied into itself. */ | ||
| 272 | rcs2log: $(srcdir)/rcs2log | 275 | rcs2log: $(srcdir)/rcs2log |
| 273 | cp -p $(srcdir)/rcs2log rcs2log | 276 | -cp -p $(srcdir)/rcs2log rcs2log |
| 274 | 277 | ||
| 275 | rcs-checkin: $(srcdir)/rcs-checkin | 278 | rcs-checkin: $(srcdir)/rcs-checkin |
| 276 | cp -p $(srcdir)/rcs-checkin rcs-checkin | 279 | -cp -p $(srcdir)/rcs-checkin rcs-checkin |
| 277 | 280 | ||
| 278 | grep-changelog: $(srcdir)/grep-changelog | 281 | grep-changelog: $(srcdir)/grep-changelog |
| 279 | cp -p $(srcdir)/grep-changelog grep-changelog | 282 | -cp -p $(srcdir)/grep-changelog grep-changelog |
| 280 | 283 | ||
| 281 | vcdiff: $(srcdir)/vcdiff | 284 | vcdiff: $(srcdir)/vcdiff |
| 282 | cp -p $(srcdir)/vcdiff vcdiff | 285 | -cp -p $(srcdir)/vcdiff vcdiff |
| 283 | 286 | ||
| 284 | #ifdef MOVEMAIL_NEEDS_BLESSING | 287 | #ifdef MOVEMAIL_NEEDS_BLESSING |
| 285 | blessmail: | 288 | blessmail: |