[vlc-commits] Update build rules for the plugins cache in build tree

Rémi Denis-Courmont git at videolan.org
Mon Aug 22 17:25:09 CEST 2011


vlc | branch: master | Rémi Denis-Courmont <remi at remlab.net> | Mon Aug 22 18:24:52 2011 +0300| [faa4825584d2b5a3f91bcb9a85a42f94519c9f9c] | committer: Rémi Denis-Courmont

Update build rules for the plugins cache in build tree

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

 modules/.gitignore  |    2 +-
 modules/Makefile.am |    8 +++++---
 2 files changed, 6 insertions(+), 4 deletions(-)

diff --git a/modules/.gitignore b/modules/.gitignore
index adf5368..4798b99 100644
--- a/modules/.gitignore
+++ b/modules/.gitignore
@@ -1 +1 @@
-plugins-*.dat
+plugins.dat
diff --git a/modules/Makefile.am b/modules/Makefile.am
index 3b3664d..9205ea2 100644
--- a/modules/Makefile.am
+++ b/modules/Makefile.am
@@ -63,11 +63,13 @@ SUBDIRS += .
 
 dist_noinst_SCRIPTS = genmf list.sh
 dist_noinst_DATA = LIST
-MOSTLYCLEANFILES = plugins.dat*
+noinst_DATA = plugins.dat
+MOSTLYCLEANFILES = $(noinst_DATA)
 
-.PHONY: stamp-cache
+.PHONY: plugins.dat
 
-stamp-cache:
+plugins.dat:
+	$(AM_V_at)rm -f plugins.dat
 	$(AM_V_GEN)if test "$(build)" = "$(host)"; then \
 		../bin/vlc-cache-gen$(EXEEXT) . ; \
 	else \



More information about the vlc-commits mailing list