From: Paul Eggert Date: Tue, 21 Mar 2017 18:14:15 +0000 (-0700) Subject: Don’t remove dependency files when configuring X-Git-Tag: emacs-26.0.90~522^2~61 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=8a58133ee63c630f5095429065fc3d8446592e4e;p=emacs.git Don’t remove dependency files when configuring Problem reported by Tom Tromey in: http://lists.gnu.org/archive/html/emacs-devel/2017-03/msg00533.html * configure.ac: Don’t remove */*.o and */deps/* when --enable-autodepend is in effect. --- diff --git a/configure.ac b/configure.ac index 83071e619b0..648000e0c45 100644 --- a/configure.ac +++ b/configure.ac @@ -5473,7 +5473,6 @@ AC_MSG_ERROR(['etc/refcards/emacsver.tex' could not be made.]) if test $AUTO_DEPEND = yes; then for dir in $AUTODEPEND_PARENTS; do - rm -f $dir/*.o $dir/deps/* AS_MKDIR_P([$dir/deps]) done fi