Fix makefile error
authorfred_nerk <fred_nerk>
Mon, 22 Mar 2004 05:26:17 +0000 (05:26 +0000)
committerfred_nerk <fred_nerk>
Mon, 22 Mar 2004 05:26:17 +0000 (05:26 +0000)
Makefile

index 76fcd80..7c48446 100644 (file)
--- a/Makefile
+++ b/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 0644 etc/ip_pool.default $(etcdir)/l2tpns.ip_pool
        $(INSTALL) -D -o root -g root -m 0600 etc/users.default $(etcdir)/l2tpns.users
-       for PLUGIN in $(PLUGINS); do
-               $(INSTALL) -o root -g root -m 0755 $(PLUGIN) $(libdir)/$(PLUGIN)
+       for PLUGIN in $(PLUGINS); do \
+               $(INSTALL) -o root -g root -m 0755 $(PLUGIN) $(libdir)/$(PLUGIN); \
        done
-       if [ ! -e /dev/net/tun ]; then
-               mkdir /dev/net
-               mknod /dev/net/tun c 10 200
+       if [ ! -e /dev/net/tun ]; then \
+               mkdir /dev/net; \
+               mknod /dev/net/tun c 10 200; \
        fi
 
 %.so: %.c