aharvey                                  Sat, 24 Sep 2011 19:16:33 +0000

Revision: http://svn.php.net/viewvc?view=revision&revision=317251

Log:
Fix bug #55769 (Make Fails with "Missing Separator" error) via s/    /^I/.

Bug: https://bugs.php.net/55769 (Assigned) Make Fails with "Missing Separator" 
error
      
Changed paths:
    U   php/php-src/branches/PHP_5_4/NEWS
    U   php/php-src/branches/PHP_5_4/sapi/litespeed/Makefile.frag
    U   php/php-src/trunk/sapi/litespeed/Makefile.frag

Modified: php/php-src/branches/PHP_5_4/NEWS
===================================================================
--- php/php-src/branches/PHP_5_4/NEWS   2011-09-24 17:18:43 UTC (rev 317250)
+++ php/php-src/branches/PHP_5_4/NEWS   2011-09-24 19:16:33 UTC (rev 317251)
@@ -21,6 +21,9 @@
   . Fixed bug #55747 (request headers missed in $_SERVER). (Laruence)
   . Fixed bug #55755 (SegFault when outputting header WWW-Authenticate). 
(Laruence)

+- Litespeed SAPI:
+  . Fixed bug #55769 (Make Fails with "Missing Separator" error). (Adam)
+
 15 Sep 2011, PHP 5.4.0 Beta
 - General improvements:
   . Added callable typehint. (Hannes)

Modified: php/php-src/branches/PHP_5_4/sapi/litespeed/Makefile.frag
===================================================================
--- php/php-src/branches/PHP_5_4/sapi/litespeed/Makefile.frag   2011-09-24 
17:18:43 UTC (rev 317250)
+++ php/php-src/branches/PHP_5_4/sapi/litespeed/Makefile.frag   2011-09-24 
19:16:33 UTC (rev 317251)
@@ -5,5 +5,5 @@

 install-litespeed: $(SAPI_LITESPEED_PATH)
        @echo "Installing PHP LitSpeed binary:   $(INSTALL_ROOT)$(bindir)/"
-    @$(INSTALL) -m 0755 $(SAPI_LITESPEED_PATH) $(INSTALL_ROOT)$(bindir)/lsphp
+       @$(INSTALL) -m 0755 $(SAPI_LITESPEED_PATH) 
$(INSTALL_ROOT)$(bindir)/lsphp


Modified: php/php-src/trunk/sapi/litespeed/Makefile.frag
===================================================================
--- php/php-src/trunk/sapi/litespeed/Makefile.frag      2011-09-24 17:18:43 UTC 
(rev 317250)
+++ php/php-src/trunk/sapi/litespeed/Makefile.frag      2011-09-24 19:16:33 UTC 
(rev 317251)
@@ -5,5 +5,5 @@

 install-litespeed: $(SAPI_LITESPEED_PATH)
        @echo "Installing PHP LitSpeed binary:   $(INSTALL_ROOT)$(bindir)/"
-    @$(INSTALL) -m 0755 $(SAPI_LITESPEED_PATH) $(INSTALL_ROOT)$(bindir)/lsphp
+       @$(INSTALL) -m 0755 $(SAPI_LITESPEED_PATH) 
$(INSTALL_ROOT)$(bindir)/lsphp


-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to