mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-06 05:47:13 +02:00
28 lines
840 B
Diff
28 lines
840 B
Diff
diff --git a/Makefile b/Makefile
|
|
index b1cf9ce..6c6fa5e 100644
|
|
--- a/Makefile
|
|
+++ b/Makefile
|
|
@@ -1,6 +1,6 @@
|
|
# Configuration
|
|
|
|
-VERSION=$(shell ./genver.sh -r)
|
|
+VERSION=$(sh ./genver.sh -r)
|
|
ENABLE_REGEX=1 # Enable regex probes
|
|
USELIBCONFIG=1 # Use libconfig? (necessary to use configuration files)
|
|
USELIBPCRE= # Use libpcre? (needed for regex on musl)
|
|
|
|
diff --git a/Makefile b/Makefile
|
|
index 6c6fa5e..441b939 100644
|
|
--- a/Makefile
|
|
+++ b/Makefile
|
|
@@ -93,7 +93,8 @@ release:
|
|
install: sslh $(MAN)
|
|
mkdir -p $(DESTDIR)/$(BINDIR)
|
|
mkdir -p $(DESTDIR)/$(MANDIR)
|
|
- install -p sslh-fork $(DESTDIR)/$(BINDIR)/sslh
|
|
+ install -p sslh-fork $(DESTDIR)/$(BINDIR)/sslh-fork
|
|
+ install -p sslh-select $(DESTDIR)/$(BINDIR)/sslh-select
|
|
install -p -m 0644 $(MAN) $(DESTDIR)/$(MANDIR)/$(MAN)
|
|
|
|
# "extended" install for Debian: install startup script
|