From b09d6d08191f76b85dbfd46eae302e203e786719 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Hentschel?= Date: Tue, 21 Apr 2009 20:32:34 +0200 Subject: [PATCH] winemaker: Fix whitespace handling for libs. --- tools/winemaker | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/winemaker b/tools/winemaker index 1bf25d34502..1d8ae92ce10 100755 --- a/tools/winemaker +++ b/tools/winemaker @@ -727,7 +727,7 @@ sub source_scan_project_file($$$) #print "\n$prj_target_libs bevor\n"; $prj_target_libs=~s/\\/\//g; $prj_target_libs=~s/\.lib//g; - $prj_target_libs=~s/\s/ -l/g; + $prj_target_libs=~s/\s+/ -l/g; #print "\n$prj_target_libs after\n"; shift (@prj_target_options); foreach ( @prj_target_options ) {