From: Lars Ingebrigtsen Date: Thu, 24 Dec 2020 17:42:27 +0000 (+0100) Subject: Unbreak the build on *BSD and Macos after previous gnulib merge X-Git-Tag: emacs-28.0.90~4585 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=d63ccde966a561756675b9c84b39c724662c82a8;p=emacs.git Unbreak the build on *BSD and Macos after previous gnulib merge * lib/Makefile.in (DEPFLAGS): Unbreak build on BSD derivatives by writing all deps files into a single directory (instead of deps/malloc/*.c). --- diff --git a/lib/Makefile.in b/lib/Makefile.in index d68ec131dd3..a280b7a3311 100644 --- a/lib/Makefile.in +++ b/lib/Makefile.in @@ -67,7 +67,7 @@ endif DEPDIR = deps ifeq ($(AUTO_DEPEND),yes) - DEPFLAGS = -MMD -MF $(DEPDIR)/$*.d -MP + DEPFLAGS = -MMD -MF $(DEPDIR)/$(*F).d -MP -include $(ALLOBJS:%.o=$(DEPDIR)/%.d) else DEPFLAGS =