From 54a2ae37289a54b612b84fd402804acf4f78e6e9 Mon Sep 17 00:00:00 2001 From: =?utf8?q?M=C3=A5ns=20Rullg=C3=A5rd?= Date: Thu, 11 Mar 2010 00:39:06 +0000 Subject: [PATCH] configure: use map() function in a couple of places Originally committed as revision 22444 to svn://svn.ffmpeg.org/ffmpeg/trunk --- configure | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/configure b/configure index 5d576ec..cf582fa 100755 --- a/configure +++ b/configure @@ -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" -- 2.7.4