]> git.sesse.net Git - vlc/commitdiff
* ./toolbox: fixed a sed syntax error (thanks anil).
authorSam Hocevar <sam@videolan.org>
Tue, 18 Mar 2003 01:54:40 +0000 (01:54 +0000)
committerSam Hocevar <sam@videolan.org>
Tue, 18 Mar 2003 01:54:40 +0000 (01:54 +0000)
toolbox

diff --git a/toolbox b/toolbox
index 127983a60b775e27a8668d77d6fc2a774560b973..79598333b559a49fb2ba8f0814e06f45bc94d616 100755 (executable)
--- a/toolbox
+++ b/toolbox
@@ -1,7 +1,7 @@
 #! /bin/sh
 
 ##  toolbox for the VLC media player
-##  $Id: toolbox,v 1.16 2003/03/18 01:26:13 sam Exp $
+##  $Id: toolbox,v 1.17 2003/03/18 01:54:40 sam Exp $
 ##
 ##  Authors: Samuel Hocevar <sam@zoy.org>
 
@@ -37,7 +37,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'
 }
 
 ###