Fix makefile error
This commit is contained in:
parent
31ebdec055
commit
9470c8e12f
1 changed files with 5 additions and 5 deletions
10
Makefile
10
Makefile
|
|
@ -49,12 +49,12 @@ install: all
|
||||||
$(INSTALL) -D -o root -g root -m 0600 etc/l2tpns.cfg.default $(etcdir)/l2tpns.cfg
|
$(INSTALL) -D -o root -g root -m 0600 etc/l2tpns.cfg.default $(etcdir)/l2tpns.cfg
|
||||||
$(INSTALL) -D -o root -g root -m 0644 etc/ip_pool.default $(etcdir)/l2tpns.ip_pool
|
$(INSTALL) -D -o root -g root -m 0644 etc/ip_pool.default $(etcdir)/l2tpns.ip_pool
|
||||||
$(INSTALL) -D -o root -g root -m 0600 etc/users.default $(etcdir)/l2tpns.users
|
$(INSTALL) -D -o root -g root -m 0600 etc/users.default $(etcdir)/l2tpns.users
|
||||||
for PLUGIN in $(PLUGINS); do
|
for PLUGIN in $(PLUGINS); do \
|
||||||
$(INSTALL) -o root -g root -m 0755 $(PLUGIN) $(libdir)/$(PLUGIN)
|
$(INSTALL) -o root -g root -m 0755 $(PLUGIN) $(libdir)/$(PLUGIN); \
|
||||||
done
|
done
|
||||||
if [ ! -e /dev/net/tun ]; then
|
if [ ! -e /dev/net/tun ]; then \
|
||||||
mkdir /dev/net
|
mkdir /dev/net; \
|
||||||
mknod /dev/net/tun c 10 200
|
mknod /dev/net/tun c 10 200; \
|
||||||
fi
|
fi
|
||||||
|
|
||||||
%.so: %.c
|
%.so: %.c
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue