From: Pádraig Brady Date: Mon, 30 Jun 2025 14:34:22 +0000 (+0100) Subject: build: fix VPATH builds with --enable-single-binary X-Git-Tag: v9.8~257 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=017fc50bb6797ac2d71e46fef8f559acb0f44c5d;p=thirdparty%2Fcoreutils.git build: fix VPATH builds with --enable-single-binary * src/local.mk: Adjust the dependency so that speedlist.h is built irrespective of the object file name. Note we could use BUILT_SOURCES for this, but it's better to have this more accurate dependency. --- diff --git a/src/local.mk b/src/local.mk index 2009439548..537032578f 100644 --- a/src/local.mk +++ b/src/local.mk @@ -718,7 +718,7 @@ src/speedlist.h: src/termios.c lib/config.h src/speedgen $(AM_V_at)chmod a-w $@t $(AM_V_at)mv $@t $@ -src/stty.$(OBJEXT): src/speedlist.h +src/stty.c: src/speedlist.h # Generates a list of macro invocations like: # SINGLE_BINARY_PROGRAM(program_name_str, main_name)