[vlc-devel] [PATCH] tools: avoid building tracking dependencies for tools
Steve Lhomme
robux4 at ycbcr.xyz
Tue Jul 21 10:06:31 CEST 2020
This is a waste of time 99.9999% of the time.
That's also what we do in contribs.
---
extras/tools/tools.mak | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/extras/tools/tools.mak b/extras/tools/tools.mak
index db3a79c6880..c74e86bcf51 100644
--- a/extras/tools/tools.mak
+++ b/extras/tools/tools.mak
@@ -243,7 +243,7 @@ pkgconfig: pkg-config-$(PKGCFG_VERSION).tar.gz
$(MOVE)
.buildpkg-config: pkgconfig
- (cd pkgconfig; ./configure --prefix=$(PREFIX) --disable-shared --enable-static && $(MAKE) && $(MAKE) install)
+ (cd pkgconfig; ./configure --prefix=$(PREFIX) --disable-shared --enable-static --disable-dependency-tracking && $(MAKE) && $(MAKE) install)
touch $@
CLEAN_FILE += .buildpkg-config
@@ -278,7 +278,7 @@ ragel: ragel-$(RAGEL_VERSION).tar.gz
.buildragel: ragel
- (cd ragel; ./configure --prefix=$(PREFIX) --disable-shared --enable-static && $(MAKE) && $(MAKE) install)
+ (cd ragel; ./configure --prefix=$(PREFIX) --disable-shared --enable-static --disable-dependency-tracking && $(MAKE) && $(MAKE) install)
touch $@
CLEAN_FILE += .buildragel
@@ -331,7 +331,7 @@ protobuf: protobuf-$(PROTOBUF_VERSION).tar.gz
$(MOVE)
.buildprotoc: protobuf
- (cd $< && ./configure --prefix="$(PREFIX)" --disable-shared --enable-static && $(MAKE) && $(MAKE) install)
+ (cd $< && ./configure --prefix="$(PREFIX)" --disable-shared --enable-static --disable-dependency-tracking && $(MAKE) && $(MAKE) install)
(find $(PREFIX) -name 'protobuf*.pc' -exec rm -f {} \;)
touch $@
--
2.26.2
More information about the vlc-devel
mailing list