]> granicus.if.org Git - php/commitdiff
MFH (fix a linefeed problem, if more than one configureoption)
authorChristian Stocker <chregu@php.net>
Thu, 4 Mar 2004 13:38:10 +0000 (13:38 +0000)
committerChristian Stocker <chregu@php.net>
Thu, 4 Mar 2004 13:38:10 +0000 (13:38 +0000)
pear/PEAR/Builder.php

index 7387b7d53066dd6d758041771e0dc00a5f24fc65..2ff95a53ebd535f32e0edb6512f5954348fda918 100644 (file)
@@ -218,7 +218,7 @@ class PEAR_Builder extends PEAR_Common
                     ($r == 'yes' || $r == 'autodetect')) {
                     $configure_command .= " --$o[name]";
                 } else {
-                    $configure_command .= " --$o[name]=$r";
+                    $configure_command .= " --$o[name]=".trim($r);
                 }
             }
         }