blob: 8f53494ebc712c18b3ce3d94befb5fb022ac4380 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
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
|