aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDan Nicolaescu2008-08-11 02:21:08 +0000
committerDan Nicolaescu2008-08-11 02:21:08 +0000
commit11d8ec4a2c37b33639beafa20d3113a52154a379 (patch)
treeeca39876f685cb58d181e90a6db65d1db4748b2c /src
parentba0c843d85d5316754ff60849e9a7f852774b679 (diff)
downloademacs-11d8ec4a2c37b33639beafa20d3113a52154a379.tar.gz
emacs-11d8ec4a2c37b33639beafa20d3113a52154a379.zip
(bootstrap-emacs): Use ln -f in the CANNOT_DUMP case.
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 42e34bd8169..b76ce8941ab 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,7 @@
12008-08-11 Dan Nicolaescu <dann@ics.uci.edu>
2
3 * Makefile.in (bootstrap-emacs): Use ln -f in the CANNOT_DUMP case.
4
12008-08-10 Glenn Morris <rgm@gnu.org> 52008-08-10 Glenn Morris <rgm@gnu.org>
2 6
3 * process.c (procfs_system_process_attributes): Use EMACS_INTs to 7 * process.c (procfs_system_process_attributes): Use EMACS_INTs to
diff --git a/src/Makefile.in b/src/Makefile.in
index a17a5acc221..6676a040467 100644
--- a/src/Makefile.in
+++ b/src/Makefile.in
@@ -1372,7 +1372,7 @@ ${lispsource}loaddefs.el: $(BOOTSTRAPEMACS)
1372bootstrap-emacs${EXEEXT}: temacs${EXEEXT} 1372bootstrap-emacs${EXEEXT}: temacs${EXEEXT}
1373 cd ../lisp; $(MAKE) $(MFLAGS) update-subdirs 1373 cd ../lisp; $(MAKE) $(MFLAGS) update-subdirs
1374#ifdef CANNOT_DUMP 1374#ifdef CANNOT_DUMP
1375 ln temacs${EXEEXT} bootstrap-emacs${EXEEXT} 1375 ln -f temacs${EXEEXT} bootstrap-emacs${EXEEXT}
1376#else 1376#else
1377 $(RUN_TEMACS) --batch --load loadup bootstrap 1377 $(RUN_TEMACS) --batch --load loadup bootstrap
1378 mv -f emacs${EXEEXT} bootstrap-emacs${EXEEXT} 1378 mv -f emacs${EXEEXT} bootstrap-emacs${EXEEXT}