Reviewed by David Kilzer.
Space not necessary for undefined feature
https://bugs.webkit.org/show_bug.cgi?id=53317
* Scripts/build-webkit:
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@76971
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
+2011-01-28 Pratik Solanki <psolanki@apple.com>
+
+ Reviewed by David Kilzer.
+
+ Space not necessary for undefined feature
+ https://bugs.webkit.org/show_bug.cgi?id=53317
+
+ * Scripts/build-webkit:
+
2011-01-28 Chang Shu <chang.shu@nokia.com>
Reviewed by Andreas Kling.
2011-01-28 Chang Shu <chang.shu@nokia.com>
Reviewed by Andreas Kling.
{
my ($feature, $isEnabled, $defaultValue) = @_;
return "" if $defaultValue == $isEnabled;
{
my ($feature, $isEnabled, $defaultValue) = @_;
return "" if $defaultValue == $isEnabled;
- return $feature . "=" . ($isEnabled ? $feature : " ");
+ return $feature . "=" . ($isEnabled ? $feature : "");