[vlc-commits] tools: avoid building tracking dependencies for tools
Steve Lhomme
git at videolan.org
Mon Jul 27 15:34:21 CEST 2020
vlc | branch: master | Steve Lhomme <robux4 at ycbcr.xyz> | Mon Jul 20 16:46:51 2020 +0200| [4958f6b5911d5771ca7fbd8727f65684f4f923a5] | committer: Steve Lhomme
tools: avoid building tracking dependencies for tools
This is a waste of time 99.9999% of the time.
That's also what we do in contribs.
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=4958f6b5911d5771ca7fbd8727f65684f4f923a5
---
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 db3a79c688..c74e86bcf5 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 $@
More information about the vlc-commits
mailing list