]> git.sesse.net Git - vlc/commitdiff
* ./toolbox: fixed a Makefile parsing bug.
authorSam Hocevar <sam@videolan.org>
Thu, 20 Mar 2003 10:06:16 +0000 (10:06 +0000)
committerSam Hocevar <sam@videolan.org>
Thu, 20 Mar 2003 10:06:16 +0000 (10:06 +0000)
toolbox

diff --git a/toolbox b/toolbox
index 7a55c96dff1b7ffe5f6e79a502a190cc1f00b5e2..76ed5effb5fac198fd54c384417cba876cf54cf7 100755 (executable)
--- a/toolbox
+++ b/toolbox
@@ -1,7 +1,7 @@
 #! /bin/sh
 
 ##  toolbox for the VLC media player
-##  $Id: toolbox,v 1.18 2003/03/18 02:21:47 ipkiss Exp $
+##  $Id: toolbox,v 1.19 2003/03/20 10:06:16 sam Exp $
 ##
 ##  Authors: Samuel Hocevar <sam@zoy.org>
 
@@ -38,7 +38,7 @@ getfiles()
 {
   awk 'BEGIN{a=0}{if(!a&&/^'"$1"'[^-_a-zA-Z0-9]*=/){a=1;print$0;next;}if(a){if(/^[a-zA-Z]/){exit;}print $0}}' < Makefile.am | \
     tr '\\ ' '\n\n' | \
-    sed -ne 's/[^-$_a-zA-Z0-9][^-$_a-zA-Z0-9]*\([a-zA-Z]\)/\1/p'
+    sed -ne 's/[^-$()_a-zA-Z0-9][^-$()_a-zA-Z0-9]*\([a-zA-Z]\)/\1/p'
 }
 
 ###