[vlc-devel] commit: list.sh: fix modules listing. ( Rémi Duraffort )
git version control
git at videolan.org
Mon Dec 28 19:30:45 CET 2009
vlc | branch: master | Rémi Duraffort <ivoire at videolan.org> | Mon Dec 28 19:00:14 2009 +0100| [9bcc170e96431f5d10cf1ca0870af579bc009920] | committer: Rémi Duraffort
list.sh: fix modules listing.
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=9bcc170e96431f5d10cf1ca0870af579bc009920
---
modules/list.sh | 3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)
diff --git a/modules/list.sh b/modules/list.sh
index 33ba1dc..7b02c51 100755
--- a/modules/list.sh
+++ b/modules/list.sh
@@ -19,7 +19,8 @@ i=0
for modfile in `find . -name "Modules.am"`
do
- for module in `awk '/^SOURCES_/{sub(/SOURCES_/,"",$1); print $1}' "$modfile"`
+ for module in `awk '/^SOURCES_/{sub(/SOURCES_/,"",$1); print $1}' "$modfile"`\
+ `awk '/^lib.*_plugin_la_SOURCES/{sub(/lib/,""); sub(/_plugin_la_SOURCES/,"",$1); print $1}' "$modfile"`
do
echo $module >> $TEMPFILE
if ! grep -q " \* $module:" $LISTFILE
More information about the vlc-devel
mailing list