On Wed, 08 Jun 2022 at 12:24:45 +0100, Simon McVittie wrote: > > make[4]: Entering directory '/<<PKGBUILDDIR>>/build/default/sim/ppc' > > make[4]: *** No rule to make target 'info'. Stop.
I think the solution to this might be upstream commit acbf56d7 (trying it now on the ppc64el porterbox). That commit is included in upstream release 12.1, but I think it would be good to get 11.x into testing before uploading 12.x to unstable. smcv
From: Dan Streetman <ddstr...@canonical.com> Date: Tue, 11 May 2021 09:28:15 -0400 Subject: sim: ppc: add missing empty targets These are copied from sim/common/Make-common.in. On ppc the build fails without at least the 'info' target, e.g.: Making info in ppc make[4]: Entering directory '/<<BUILDDIR>>/gdb-10.2.2974.g5b45e89f56d+21.10.20210510155809/build/default/sim/ppc' make[4]: *** No rule to make target 'info'. Stop. Origin: upstream, 12.1, commit:acbf56d780b77c30276431474b41defc868e2e5c Bug-Debian: https://bugs.debian.org/1012494 --- sim/ppc/Makefile.in | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/sim/ppc/Makefile.in b/sim/ppc/Makefile.in index 3a5d43c..172965c 100644 --- a/sim/ppc/Makefile.in +++ b/sim/ppc/Makefile.in @@ -867,6 +867,18 @@ config.status: configure check: +html: +clean-html: +install-html: + +info: +clean-info: +install-info: + +pdf: +clean-pdf: +install-pdf: + install: installdirs a=`basename "$$(pwd)"`; \ n=`echo run | sed '$(program_transform_name)'`; \