Skip to content

Commit 474ee70

Browse files
committed
Merge branch 'PHP-7.1' into PHP-7.2
* PHP-7.1: Fix bug #75248 and #75251
2 parents 0d6c56a + af71942 commit 474ee70

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
@@ -6,6 +6,11 @@ PHP NEWS
66
. Fixed bug #75220 (Segfault when calling is_callable on parent).
77
(andrewnester)
88

9+
- litespeed:
10+
. Fixed bug #75248 (Binary directory doesn't get created when building
11+
only litespeed SAPI). (petk)
12+
. Fixed bug #75251 (Missing program prefix and suffix). (petk)
13+
914
28 Sep 2017, PHP 7.2.0RC3
1015

1116
- Core

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)