Make: Fix build with tool chains that require depcomp
Commit fad8e7f7b
"Move auxiliary build tools to build-aux/" moved
depcomp, but neglected to adjust Make.mk. This broke the build with
tool chains that actually use depcomp. Modern GCC and Clang don't.
Fix the obvious way.
Signed-off-by: Markus Armbruster <armbru@pond.sub.org>
This commit is contained in:
parent
f06473fbb4
commit
c3eb998396
1 changed files with 2 additions and 2 deletions
4
Make.mk
4
Make.mk
|
@ -27,7 +27,7 @@
|
||||||
# Make.mk: The real Makefile, included by GNUmakefile
|
# Make.mk: The real Makefile, included by GNUmakefile
|
||||||
#
|
#
|
||||||
# Known contributors to this file:
|
# Known contributors to this file:
|
||||||
# Markus Armbruster, 2005-2017
|
# Markus Armbruster, 2005-2020
|
||||||
#
|
#
|
||||||
|
|
||||||
# This makefile was inspired by `Recursive Make Considered Harmful',
|
# This makefile was inspired by `Recursive Make Considered Harmful',
|
||||||
|
@ -72,7 +72,7 @@ include $(srcdir)/info/subjects.mk
|
||||||
topics := $(patsubst %.t,%,$(notdir $(tsrc)))
|
topics := $(patsubst %.t,%,$(notdir $(tsrc)))
|
||||||
info := $(topics) $(subjects) all TOP
|
info := $(topics) $(subjects) all TOP
|
||||||
scripts := $(srcdir)/src/scripts
|
scripts := $(srcdir)/src/scripts
|
||||||
depcomp := $(SHELL) $(srcdir)/depcomp
|
depcomp := $(SHELL) $(srcdir)/build-aux/depcomp
|
||||||
tarball := $(SHELL) -e $(scripts)/tarball
|
tarball := $(SHELL) -e $(scripts)/tarball
|
||||||
econfig := $(sysconfdir)/empire/econfig
|
econfig := $(sysconfdir)/empire/econfig
|
||||||
schedule := $(sysconfdir)/empire/schedule
|
schedule := $(sysconfdir)/empire/schedule
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue