[vlc-devel] commit: contribs: make sure regex and SQLite get only compiled once per release ( Felix Paul Kühne )

git version control git at videolan.org
Thu Dec 3 21:41:49 CET 2009


vlc | branch: master | Felix Paul Kühne <fkuehne at videolan.org> | Thu Dec  3 21:41:46 2009 +0100| [fb9d333d42db537cac039f423853ecbfe041b99d] | committer: Felix Paul Kühne 

contribs: make sure regex and SQLite get only compiled once per release

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

 extras/contrib/src/Makefile |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/extras/contrib/src/Makefile b/extras/contrib/src/Makefile
index 43ecbfb..9772704 100644
--- a/extras/contrib/src/Makefile
+++ b/extras/contrib/src/Makefile
@@ -2619,6 +2619,7 @@ regex: regex-$(REGEX_VERSION).tar.gz
 
 .regex: regex
 	(cd $<; $(HOSTCC) ./configure $(HOSTCONF) --prefix=$(PREFIX) && make subirs= && $(AR) ru libregex.a regex.o && $(RANLIB) libregex.a && cp -v regex.h $(PREFIX)/include && cp -v libregex.a $(PREFIX)/lib )
+	touch $@
 
 CLEAN_FILE += .regex
 CLEAN_PKG += regex
@@ -2635,6 +2636,7 @@ sqlite-$(SQLITE_VERSION): sqlite-amalgamation-$(SQLITE_VERSION).tar.gz
 
 .sqlite3: sqlite-$(SQLITE_VERSION)
 	(cd $<; $(HOSTCC) ./configure $(HOSTCONF) --prefix=$(PREFIX) && make && make install )
+	touch $@
 
 CLEAN_FILE += .sqlite3
 CLEAN_PKG += sqlite-$(SQLITE_VERSION)




More information about the vlc-devel mailing list