configure: use map() function in a couple of places

Originally committed as revision 22444 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Måns Rullgård 2010-03-11 00:39:06 +00:00
parent 36e2dea032
commit 54a2ae3728
1 changed files with 2 additions and 6 deletions

8
configure vendored
View File

@ -2947,12 +2947,8 @@ if enabled source_path_used; then
libpostproc/Makefile
libswscale/Makefile
"
for dir in $DIRS ; do
mkdir -p $dir
done
for f in $FILES ; do
$ln_s "$source_path/$f" $f
done
map 'mkdir -p $_' $DIRS;
map '$ln_s "$source_path/$_" $_' $FILES
fi
enabled stripping || strip="echo skipping strip"