diff options
| author | Paul Eggert | 2013-08-27 23:01:52 -0700 |
|---|---|---|
| committer | Paul Eggert | 2013-08-27 23:01:52 -0700 |
| commit | 50b13cdedb19f4bdd6737e8d2cdb4daa4e886c92 (patch) | |
| tree | a58d431171217eb2172386e3b67452fa09d79f99 /src | |
| parent | f60e429a1a1a0d6a51761ef12e54dde52967f085 (diff) | |
| download | emacs-50b13cdedb19f4bdd6737e8d2cdb4daa4e886c92.tar.gz emacs-50b13cdedb19f4bdd6737e8d2cdb4daa4e886c92.zip | |
* Makefile.in (SHELL): Now @SHELL@, not /bin/sh,
for portability to hosts where /bin/sh has problems.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 5 | ||||
| -rw-r--r-- | src/Makefile.in | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index dfcad3bf120..ed2346424ea 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2013-08-28 Paul Eggert <eggert@cs.ucla.edu> | ||
| 2 | |||
| 3 | * Makefile.in (SHELL): Now @SHELL@, not /bin/sh, | ||
| 4 | for portability to hosts where /bin/sh has problems. | ||
| 5 | |||
| 1 | 2013-08-28 Dmitry Antipov <dmantipov@yandex.ru> | 6 | 2013-08-28 Dmitry Antipov <dmantipov@yandex.ru> |
| 2 | 7 | ||
| 3 | Redesign redisplay interface to drop global output_cursor. | 8 | Redesign redisplay interface to drop global output_cursor. |
diff --git a/src/Makefile.in b/src/Makefile.in index f0ed770ac8f..0e7ff9cbd33 100644 --- a/src/Makefile.in +++ b/src/Makefile.in | |||
| @@ -23,7 +23,7 @@ | |||
| 23 | # script may need modifying in sync with changes made here. Try to | 23 | # script may need modifying in sync with changes made here. Try to |
| 24 | # avoid shell-ism because the DOS build has to use the DOS shell. | 24 | # avoid shell-ism because the DOS build has to use the DOS shell. |
| 25 | 25 | ||
| 26 | SHELL = /bin/sh | 26 | SHELL = @SHELL@ |
| 27 | 27 | ||
| 28 | # Here are the things that we expect ../configure to edit. | 28 | # Here are the things that we expect ../configure to edit. |
| 29 | # We use $(srcdir) explicitly in dependencies so as not to depend on VPATH. | 29 | # We use $(srcdir) explicitly in dependencies so as not to depend on VPATH. |