summaryrefslogtreecommitdiff
path: root/ipif
diff options
context:
space:
mode:
authorIan Jackson <ijackson@chiark.greenend.org.uk>2013-12-04 19:14:30 +0000
committerIan Jackson <ijackson@chiark.greenend.org.uk>2013-12-04 19:14:30 +0000
commit5e8cb121d0061bf38eb33be82b0b026ddafeda63 (patch)
tree60d6ccb425206359b7acc07fa9c59ce380800449 /ipif
parent97f318e04ed0024b2bf5903215a75249401d3fd7 (diff)
downloaduserv-utils-5e8cb121d0061bf38eb33be82b0b026ddafeda63.tar.gz
ipif: Fix deprecation of udptunnel so it builds
Diffstat (limited to 'ipif')
-rw-r--r--ipif/Makefile9
1 files changed, 5 insertions, 4 deletions
diff --git a/ipif/Makefile b/ipif/Makefile
index 0addd4d..78b4972 100644
--- a/ipif/Makefile
+++ b/ipif/Makefile
@@ -24,7 +24,8 @@
include ../settings.make
varlibvpn= $(varlibuserv)/vpn
-etcvpn= $(etcdir)/userv/vpn
+etcuserv= $(etcdir)/userv
+etcvpn= $(etcuserv)/vpn
PROGRAM_TARGETS+=
PROGRAM_TARGETS$(depr)+= udptunnel-forwarder udptunnel-reconf
@@ -36,8 +37,8 @@ TARGETS+= $(PROGRAM_TARGETS)
PROGRAMS$(depr)+= udptunnel
PROGRAMS+= $(PROGRAM_TARGETS)
-DIRS+= $(libuserv)
-DIRS$(depr)+= $(bindir) $(services) $(varlibvpn) $(shareuserv)
+DIRS+= $(libuserv) $(etcuserv) $(services)
+DIRS$(depr)+= $(bindir) $(varlibvpn) $(shareuserv)
SHAREFILES$(depr)+= udptunnel-vpn-config.m4 udptunnel-vpn-defaults
@@ -49,7 +50,7 @@ OBJS_BFTEST= blowfishtest.o blowfish.o hex.o
all: $(TARGETS)
-install: installdirs all
+install: all
mkdir -p $(DIRS)
cp -b service $(libuserv)/ipif
set -e; for f in $(PROGRAMS); do cp -b $$f $(bindir)/.; done