From 0c2eb36ed20f835b889cf8607772d949a658c67e Mon Sep 17 00:00:00 2001
From: Mark Olesen <Mark.Olesen@Germany>
Date: Fri, 11 Feb 2011 16:52:36 +0100
Subject: [PATCH] STYLE: allow spaces in pkg name (again)

---
 wmake/wmakePrintBuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/wmake/wmakePrintBuild b/wmake/wmakePrintBuild
index 3812bece3e9..103e65cb07e 100755
--- a/wmake/wmakePrintBuild
+++ b/wmake/wmakePrintBuild
@@ -76,8 +76,8 @@ do
         ;;
     -pkg | -package)
         [ "$#" -ge 2 ] || usage "'$1' option requires an argument"
-        # mark empty as 'none', disallow '!' and spaces in string
-        package=$(echo "${2:-none}" | sed -e 's/!//g' -e 's/ //g')
+        # mark empty as 'none', disallow '!' in string
+        package=$(echo "${2:-none}" | sed -e 's/!//g')
         shift 2
         ;;
     -v | -version)
-- 
GitLab