diff options
| author | Stefan Monnier | 2010-03-20 17:46:31 -0400 |
|---|---|---|
| committer | Stefan Monnier | 2010-03-20 17:46:31 -0400 |
| commit | 3613edce52c791a51e797350df513f719c7de941 (patch) | |
| tree | e3fc10c3a3008699cc782da3deb644af58e4adbd /src | |
| parent | f05e1b9401d40b0abfc9cd1666e1ec2bdf14881f (diff) | |
| download | emacs-3613edce52c791a51e797350df513f719c7de941.tar.gz emacs-3613edce52c791a51e797350df513f719c7de941.zip | |
Use more relative file and directory names in `lisp' make rules.
* lisp/Makefile.in (EMACS): Arrange for it to work when we chdir.
(setwins, setwins_almost, setwins_for_subdirs):
Don't `cd'; output relative names.
(all, compile, compile-always, compile-last): Set emacswd.
(custom-deps, finder-data, autoloads, update-subdirs, compile-last):
Just cd to the lisp source dir so we can use relative file names.
* src/Makefile.in (bootstrap_exe): Use an absolute name.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 4 | ||||
| -rw-r--r-- | src/Makefile.in | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 2eaefe41fac..1f8be957599 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2010-03-20 Stefan Monnier <monnier@iro.umontreal.ca> | ||
| 2 | |||
| 3 | * Makefile.in (bootstrap_exe): Use an absolute name. | ||
| 4 | |||
| 1 | 2010-03-20 Dan Nicolaescu <dann@ics.uci.edu> | 5 | 2010-03-20 Dan Nicolaescu <dann@ics.uci.edu> |
| 2 | 6 | ||
| 3 | Remove support for old GNU/Linux using libc version 5. | 7 | Remove support for old GNU/Linux using libc version 5. |
diff --git a/src/Makefile.in b/src/Makefile.in index 30b8be1ba56..389b7921d6e 100644 --- a/src/Makefile.in +++ b/src/Makefile.in | |||
| @@ -63,7 +63,7 @@ M_FILE = ${srcdir}/@machfile@ | |||
| 63 | S_FILE = ${srcdir}/@opsysfile@ | 63 | S_FILE = ${srcdir}/@opsysfile@ |
| 64 | config_h = config.h $(M_FILE) $(S_FILE) | 64 | config_h = config.h $(M_FILE) $(S_FILE) |
| 65 | 65 | ||
| 66 | bootstrap_exe = ../src/bootstrap-emacs${EXEEXT} | 66 | bootstrap_exe = `pwd`/bootstrap-emacs${EXEEXT} |
| 67 | 67 | ||
| 68 | OTHER_FILES = @OTHER_FILES@ | 68 | OTHER_FILES = @OTHER_FILES@ |
| 69 | 69 | ||