aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorStefan Monnier2010-03-20 17:46:31 -0400
committerStefan Monnier2010-03-20 17:46:31 -0400
commit3613edce52c791a51e797350df513f719c7de941 (patch)
treee3fc10c3a3008699cc782da3deb644af58e4adbd /src
parentf05e1b9401d40b0abfc9cd1666e1ec2bdf14881f (diff)
downloademacs-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/ChangeLog4
-rw-r--r--src/Makefile.in2
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 @@
12010-03-20 Stefan Monnier <monnier@iro.umontreal.ca>
2
3 * Makefile.in (bootstrap_exe): Use an absolute name.
4
12010-03-20 Dan Nicolaescu <dann@ics.uci.edu> 52010-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@
63S_FILE = ${srcdir}/@opsysfile@ 63S_FILE = ${srcdir}/@opsysfile@
64config_h = config.h $(M_FILE) $(S_FILE) 64config_h = config.h $(M_FILE) $(S_FILE)
65 65
66bootstrap_exe = ../src/bootstrap-emacs${EXEEXT} 66bootstrap_exe = `pwd`/bootstrap-emacs${EXEEXT}
67 67
68OTHER_FILES = @OTHER_FILES@ 68OTHER_FILES = @OTHER_FILES@
69 69