diff options
| author | Glenn Morris | 2012-10-26 00:39:47 -0700 |
|---|---|---|
| committer | Glenn Morris | 2012-10-26 00:39:47 -0700 |
| commit | eeced60b6ca4be63abca61cab5967ee28537a8af (patch) | |
| tree | c6cf4f3c588d8535f068e285f043891b64927861 /Makefile.in | |
| parent | 25ca458727b561c39a9f524179443ab91617bf3a (diff) | |
| download | emacs-eeced60b6ca4be63abca61cab5967ee28537a8af.tar.gz emacs-eeced60b6ca4be63abca61cab5967ee28537a8af.zip | |
Program name transformations should not be applied to $EXEEXT.
* Makefile.in (EMACS, EMACSFULL):
* lib-src/Makefile.in (install, uninstall):
Transformations should not be applied to $EXEEXT.
Diffstat (limited to 'Makefile.in')
| -rw-r--r-- | Makefile.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.in b/Makefile.in index d7eec829495..29aed2b0be8 100644 --- a/Makefile.in +++ b/Makefile.in | |||
| @@ -259,8 +259,8 @@ GZIP_INFO = @GZIP_INFO@ | |||
| 259 | TRANSFORM = @program_transform_name@ | 259 | TRANSFORM = @program_transform_name@ |
| 260 | 260 | ||
| 261 | # What emacs should be called when installed. | 261 | # What emacs should be called when installed. |
| 262 | EMACS = `echo emacs${EXEEXT} | sed '$(TRANSFORM)'` | 262 | EMACS = `echo emacs | sed '$(TRANSFORM)'`${EXEEXT} |
| 263 | EMACSFULL = `echo emacs-${version}${EXEEXT} | sed '$(TRANSFORM)'` | 263 | EMACSFULL = `echo emacs-${version} | sed '$(TRANSFORM)'`${EXEEXT} |
| 264 | 264 | ||
| 265 | # Subdirectories to make recursively. | 265 | # Subdirectories to make recursively. |
| 266 | SUBDIR = lib lib-src src lisp leim | 266 | SUBDIR = lib lib-src src lisp leim |