[vlc-commits] contrib: gpg-error: group the configure flags in a variable

Steve Lhomme git at videolan.org
Fri May 25 09:42:09 CEST 2018


vlc | branch: master | Steve Lhomme <robux4 at ycbcr.xyz> | Thu May 24 16:45:26 2018 +0200| [498619b876398ce2ff4c4dc3abfef4ab515e7e52] | committer: Steve Lhomme

contrib: gpg-error: group the configure flags in a variable

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=498619b876398ce2ff4c4dc3abfef4ab515e7e52
---

 contrib/src/gpg-error/rules.mak | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/contrib/src/gpg-error/rules.mak b/contrib/src/gpg-error/rules.mak
index eb19efdea4..5c81478273 100644
--- a/contrib/src/gpg-error/rules.mak
+++ b/contrib/src/gpg-error/rules.mak
@@ -53,8 +53,14 @@ endif
 endif
 endif
 
+GPGERROR_CONF := $(HOSTCONF) \
+	--disable-nls \
+	--disable-shared \
+	--disable-languages \
+	--disable-tests
+
 .gpg-error: libgpg-error
 	$(RECONF)
-	cd $< && $(HOSTVARS) ./configure $(HOSTCONF) --disable-nls --disable-shared --disable-languages --disable-tests
+	cd $< && $(HOSTVARS) ./configure $(GPGERROR_CONF)
 	cd $< && $(MAKE) install
 	touch $@



More information about the vlc-commits mailing list