summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Kokot <peterkokot@gmail.com>2017-09-22 22:41:51 +0200
committerJoe Watkins <krakjoe@php.net>2017-09-27 06:15:12 +0100
commit6d0391b1a41e03b4fc62c982b27700eb88e620db (patch)
tree13b3538081ac6033ce81bd143f901e827649f4a9
parenta680d701cece7d8c5d2b8aa1ce14bae4058b20da (diff)
downloadphp-git-6d0391b1a41e03b4fc62c982b27700eb88e620db.tar.gz
Fix bug #75248 and #75251
-rw-r--r--NEWS5
-rw-r--r--sapi/litespeed/Makefile.frag4
2 files changed, 7 insertions, 2 deletions
diff --git a/NEWS b/NEWS
index c3c39bb418..c3e57603e3 100644
--- a/NEWS
+++ b/NEWS
@@ -11,6 +11,11 @@ PHP NEWS
. Fixed bug #75220 (Segfault when calling is_callable on parent).
(andrewnester)
+- litespeed:
+ . Fixed bug #75248 (Binary directory doesn't get created when building
+ only litespeed SAPI). (petk)
+ . Fixed bug #75251 (Missing program prefix and suffix). (petk)
+
- SPL:
. Fixed bug #73629 (SplDoublyLinkedList::setIteratorMode masks intern flags).
(J. Jeising, cmb)
diff --git a/sapi/litespeed/Makefile.frag b/sapi/litespeed/Makefile.frag
index 125a3b13da..2010d8d623 100644
--- a/sapi/litespeed/Makefile.frag
+++ b/sapi/litespeed/Makefile.frag
@@ -5,5 +5,5 @@ $(SAPI_LITESPEED_PATH): $(PHP_GLOBAL_OBJS) $(PHP_BINARY_OBJS) $(PHP_LITESPEED_OB
install-litespeed: $(SAPI_LITESPEED_PATH)
@echo "Installing PHP LiteSpeed binary: $(INSTALL_ROOT)$(bindir)/"
- @$(INSTALL) -m 0755 $(SAPI_LITESPEED_PATH) $(INSTALL_ROOT)$(bindir)/lsphp
-
+ @$(mkinstalldirs) $(INSTALL_ROOT)$(bindir)
+ @$(INSTALL) -m 0755 $(SAPI_LITESPEED_PATH) $(INSTALL_ROOT)$(bindir)/$(program_prefix)lsphp$(program_suffix)