Commit b6d85111 authored by Sam Hocevar's avatar Sam Hocevar

* ./toolbox: fixed a sed syntax error (thanks anil).

parent c842ca14
#! /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'
}
###
......
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