Mercurial > audlegacy
view rename.sh @ 1638:9937a2512823 trunk
[svn] - wma.c: use av_malloc() instead of directly using posix_memalign()
- libffwma/mem.c: use posix_memalign() only on glibc, other platforms do not need it
author | nenolod |
---|---|
date | Thu, 07 Sep 2006 11:45:48 -0700 |
parents | cb178e5ad177 |
children |
line wrap: on
line source
files=$(grep libbeep * -Rl | xargs) for i in $files; do echo "==> $i" sed s:beep\/:audacious\/:g < $i > $i.new mv $i.new $i done;