diff options
| author | Glenn Morris | 2010-11-03 14:55:19 -0400 |
|---|---|---|
| committer | Chong Yidong | 2010-11-03 14:55:19 -0400 |
| commit | 754996bcf8e980648b63afa3e8bbaedcefdc22bc (patch) | |
| tree | 94572715a2386cbf205f387b4792f4270db9bf7f /src/Makefile.in | |
| parent | 3649d303b0e78aaeb4894389f5be6375837f88b8 (diff) | |
| download | emacs-754996bcf8e980648b63afa3e8bbaedcefdc22bc.tar.gz emacs-754996bcf8e980648b63afa3e8bbaedcefdc22bc.zip | |
Fix for Bug#5655, backported from trunk.
* configure.in (CRT_DIR): New output variable.
(--with-crt-dir): New option. (Bug#5655)
(HAVE_LIB64_DIR): Remove.
* src/Makefile.in (CRT_DIR): New variable, set by configure.
* src/m/amdx86-64.h, m/ibms390x.h (START_FILES, LIB_STANDARD):
Use $CRT_DIR rather than HAVE_LIB64_DIR. (Bug#5655)
Diffstat (limited to 'src/Makefile.in')
| -rw-r--r-- | src/Makefile.in | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/Makefile.in b/src/Makefile.in index 9caa01d9066..1b0fbdb8b63 100644 --- a/src/Makefile.in +++ b/src/Makefile.in | |||
| @@ -67,6 +67,9 @@ bootstrap_exe = ../src/bootstrap-emacs${EXEEXT} | |||
| 67 | 67 | ||
| 68 | OTHER_FILES = @OTHER_FILES@ | 68 | OTHER_FILES = @OTHER_FILES@ |
| 69 | 69 | ||
| 70 | ## Only used by amdx86-64 and ibms390x GNU/Linux. | ||
| 71 | CRT_DIR=@CRT_DIR@ | ||
| 72 | |||
| 70 | # ========================== start of cpp stuff ======================= | 73 | # ========================== start of cpp stuff ======================= |
| 71 | /* From here on, comments must be done in C syntax. */ | 74 | /* From here on, comments must be done in C syntax. */ |
| 72 | 75 | ||