Commit 87a66665 authored by mru's avatar mru

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

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@22444 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 3b5b3e8f
......@@ -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"
......
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