Skip to content

Commit 6d0391b

Browse files
petkkrakjoe
authored andcommitted
Fix bug #75248 and #75251
1 parent a680d70 commit 6d0391b

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

NEWS

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,11 @@ PHP NEWS
1111
. Fixed bug #75220 (Segfault when calling is_callable on parent).
1212
(andrewnester)
1313

14+
- litespeed:
15+
. Fixed bug #75248 (Binary directory doesn't get created when building
16+
only litespeed SAPI). (petk)
17+
. Fixed bug #75251 (Missing program prefix and suffix). (petk)
18+
1419
- SPL:
1520
. Fixed bug #73629 (SplDoublyLinkedList::setIteratorMode masks intern flags).
1621
(J. Jeising, cmb)

sapi/litespeed/Makefile.frag

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@ $(SAPI_LITESPEED_PATH): $(PHP_GLOBAL_OBJS) $(PHP_BINARY_OBJS) $(PHP_LITESPEED_OB
55

66
install-litespeed: $(SAPI_LITESPEED_PATH)
77
@echo "Installing PHP LiteSpeed binary: $(INSTALL_ROOT)$(bindir)/"
8-
@$(INSTALL) -m 0755 $(SAPI_LITESPEED_PATH) $(INSTALL_ROOT)$(bindir)/lsphp
9-
8+
@$(mkinstalldirs) $(INSTALL_ROOT)$(bindir)
9+
@$(INSTALL) -m 0755 $(SAPI_LITESPEED_PATH) $(INSTALL_ROOT)$(bindir)/$(program_prefix)lsphp$(program_suffix)

0 commit comments

Comments
 (0)