kumquat-buildroot/package/ejabberd/0001-Makefile.in-do-not-download-or-compile-dependencies.patch
Bernd Kuhls fd29a61f01 package/ejabberd: bump version to 23.04
Rebased patches, added sha256 hash provided by upstream, switched tarball
to tar.gz.

Added make target "all" because the default make target "compile" in
pkg-rebar.mk does not build ejabberdctl.example after upstream commit
93f994d50a

Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
2023-07-20 23:08:02 +02:00

38 lines
875 B
Diff

From bf3571da4a68a6a857ab7ad8256f8276b3687a38 Mon Sep 17 00:00:00 2001
From: Johan Oudinet <johan.oudinet@gmail.com>
Date: Fri, 13 May 2022 14:22:37 +0200
Subject: [PATCH] Makefile.in: do not download or compile dependencies
Signed-off-by: Johan Oudinet <johan.oudinet@gmail.com>
[Bernd: updated for version 23.04]
Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
---
Makefile.in | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/Makefile.in b/Makefile.in
index ab0e9d967..6e54168a7 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -155,7 +155,7 @@ else
endif
endif
-all: scripts deps src
+all: scripts src
deps: $(DEPSDIR)/.got
@@ -169,7 +169,7 @@ $(DEPSDIR)/.built: $(DEPSDIR)/.got
$(DEPSDIR)/.built: $(DEPSDIR)/.got
$(REBAR) compile && :> $(DEPSDIR)/.built
-src: $(DEPSDIR)/.built
+src:
$(REBAR) $(SKIPDEPS) compile
update:
--
2.34.1