[vlc-commits] contrib: freetype2: fix ordering
Rémi Denis-Courmont
git at videolan.org
Tue Feb 21 18:10:17 CET 2017
vlc | branch: master | Rémi Denis-Courmont <remi at remlab.net> | Tue Feb 21 19:00:14 2017 +0200| [1d78c00b55d655105c2f29798448d217e2bb3701] | committer: Rémi Denis-Courmont
contrib: freetype2: fix ordering
$(MOVE) must be the last command in the extract rule (if there is one).
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=1d78c00b55d655105c2f29798448d217e2bb3701
---
contrib/src/freetype2/rules.mak | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/contrib/src/freetype2/rules.mak b/contrib/src/freetype2/rules.mak
index f5d985e..c9f588a 100644
--- a/contrib/src/freetype2/rules.mak
+++ b/contrib/src/freetype2/rules.mak
@@ -17,11 +17,11 @@ freetype: freetype-$(FREETYPE2_VERSION).tar.gz .sum-freetype2
$(UNPACK)
$(call pkg_static, "builds/unix/freetype2.in")
$(MOVE)
- cd $@ && cp builds/unix/install-sh .
DEPS_freetype2 = zlib $(DEPS_zlib)
.freetype2: freetype
+ cd $< && cp builds/unix/install-sh .
sed -i.orig s/-ansi// $</builds/unix/configure
cd $< && GNUMAKE=$(MAKE) $(HOSTVARS) ./configure --with-harfbuzz=no --with-zlib=yes --without-png --with-bzip2=no $(HOSTCONF)
cd $< && $(MAKE) && $(MAKE) install
More information about the vlc-commits
mailing list