# HG changeset patch # User Dan Nicolaescu # Date 1218421268 0 # Node ID 750eb9498631cd6de712d2ca44d2aa2ae88661ad # Parent af4c4582966644181e612a8a6fac1e59b9fd2f34 (bootstrap-emacs): Use ln -f in the CANNOT_DUMP case. diff -r af4c45829666 -r 750eb9498631 src/ChangeLog --- a/src/ChangeLog Mon Aug 11 01:24:31 2008 +0000 +++ b/src/ChangeLog Mon Aug 11 02:21:08 2008 +0000 @@ -1,3 +1,7 @@ +2008-08-11 Dan Nicolaescu + + * Makefile.in (bootstrap-emacs): Use ln -f in the CANNOT_DUMP case. + 2008-08-10 Glenn Morris * process.c (procfs_system_process_attributes): Use EMACS_INTs to diff -r af4c45829666 -r 750eb9498631 src/Makefile.in --- a/src/Makefile.in Mon Aug 11 01:24:31 2008 +0000 +++ b/src/Makefile.in Mon Aug 11 02:21:08 2008 +0000 @@ -1372,7 +1372,7 @@ bootstrap-emacs${EXEEXT}: temacs${EXEEXT} cd ../lisp; $(MAKE) $(MFLAGS) update-subdirs #ifdef CANNOT_DUMP - ln temacs${EXEEXT} bootstrap-emacs${EXEEXT} + ln -f temacs${EXEEXT} bootstrap-emacs${EXEEXT} #else $(RUN_TEMACS) --batch --load loadup bootstrap mv -f emacs${EXEEXT} bootstrap-emacs${EXEEXT}