From mboxrd@z Thu Jan 1 00:00:00 1970 Delivery-date: Mon, 13 Oct 2025 18:35:41 +0200 Received: from metis.whiteo.stw.pengutronix.de ([2a0a:edc0:2:b01:1d::104]) by lore.white.stw.pengutronix.de with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.96) (envelope-from ) id 1v8LWP-007Qyb-0p for lore@lore.pengutronix.de; Mon, 13 Oct 2025 18:35:41 +0200 Received: from localhost ([127.0.0.1] helo=metis.whiteo.stw.pengutronix.de) by metis.whiteo.stw.pengutronix.de with esmtp (Exim 4.92) (envelope-from ) id 1v8LWO-000591-VV; Mon, 13 Oct 2025 18:35:40 +0200 Received: from dude04.red.stw.pengutronix.de ([2a0a:edc0:0:1101:1d::ac]) by metis.whiteo.stw.pengutronix.de with esmtp (Exim 4.92) (envelope-from ) id 1v8LWD-000584-MI; Mon, 13 Oct 2025 18:35:29 +0200 From: =?UTF-8?q?Sven=20P=C3=BCschel?= To: ptxdist@pengutronix.de Date: Mon, 13 Oct 2025 18:35:00 +0200 Message-ID: <20251013163527.2665822-1-s.pueschel@pengutronix.de> X-Mailer: git-send-email 2.47.3 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Subject: [ptxdist] [PATCH] libass: don't run autogen.sh in libass.make X-BeenThere: ptxdist@pengutronix.de X-Mailman-Version: 2.1.29 Precedence: list List-Id: PTXdist Development Mailing List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: ptxdist@pengutronix.de Cc: =?UTF-8?q?Sven=20P=C3=BCschel?= Sender: "ptxdist" X-SA-Exim-Connect-IP: 127.0.0.1 X-SA-Exim-Mail-From: ptxdist-bounces@pengutronix.de X-SA-Exim-Scanned: No (on metis.whiteo.stw.pengutronix.de); SAEximRunCond expanded to false When the configure file is missing from the project, an autogen.sh should be added to patches instead of running autogen.sh in the prepare stage. Signed-off-by: Sven Püschel --- patches/libass-0.17.1/autogen.sh | 1 + rules/libass.make | 6 ------ 2 files changed, 1 insertion(+), 6 deletions(-) create mode 120000 patches/libass-0.17.1/autogen.sh diff --git a/patches/libass-0.17.1/autogen.sh b/patches/libass-0.17.1/autogen.sh new file mode 120000 index 000000000..9f8a4cb7d --- /dev/null +++ b/patches/libass-0.17.1/autogen.sh @@ -0,0 +1 @@ +../autogen.sh \ No newline at end of file diff --git a/rules/libass.make b/rules/libass.make index a0066e156..3bf820c01 100644 --- a/rules/libass.make +++ b/rules/libass.make @@ -35,12 +35,6 @@ LIBASS_CONF_OPT := \ --disable-test \ --disable-profile -$(STATEDIR)/libass.prepare: - @$(call targetinfo) - @$(call world/execute, LIBASS, ./autogen.sh) - @$(call world/prepare, LIBASS) - @$(call touch) - # ---------------------------------------------------------------------------- # Target-Install # ---------------------------------------------------------------------------- -- 2.47.3