aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Eggert2017-03-21 11:14:15 -0700
committerPaul Eggert2017-03-21 11:14:52 -0700
commit8a58133ee63c630f5095429065fc3d8446592e4e (patch)
tree0d6a169d09b0d433abe83febdd734b0d0cd59f16
parent9319de675e395517f9a7b50cae1a3aad9cd0abc2 (diff)
downloademacs-8a58133ee63c630f5095429065fc3d8446592e4e.tar.gz
emacs-8a58133ee63c630f5095429065fc3d8446592e4e.zip
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.
-rw-r--r--configure.ac1
1 files changed, 0 insertions, 1 deletions
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.])
5473 5473
5474if test $AUTO_DEPEND = yes; then 5474if test $AUTO_DEPEND = yes; then
5475 for dir in $AUTODEPEND_PARENTS; do 5475 for dir in $AUTODEPEND_PARENTS; do
5476 rm -f $dir/*.o $dir/deps/*
5477 AS_MKDIR_P([$dir/deps]) 5476 AS_MKDIR_P([$dir/deps])
5478 done 5477 done
5479fi 5478fi