Commit 9bcc170e authored by Rémi Duraffort's avatar Rémi Duraffort

list.sh: fix modules listing.

parent ab2c173a
...@@ -19,7 +19,8 @@ i=0 ...@@ -19,7 +19,8 @@ i=0
for modfile in `find . -name "Modules.am"` for modfile in `find . -name "Modules.am"`
do 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 do
echo $module >> $TEMPFILE echo $module >> $TEMPFILE
if ! grep -q " \* $module:" $LISTFILE if ! grep -q " \* $module:" $LISTFILE
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment