diff options
author | Roy Marples <roy@marples.name> | 2008-03-26 05:08:56 +0000 |
---|---|---|
committer | Roy Marples <roy@marples.name> | 2008-03-26 05:08:56 +0000 |
commit | e30ea10e6cb3d3eca370fdb22d479834ec3f86a4 (patch) | |
tree | ec7f604e005e9a71af0c68fb146799ef1efb3944 | |
parent | 3f37d4771b7b88a9c17f8c4b677551ade486416f (diff) |
Fix some more prefix stuff.
-rw-r--r-- | mk/sys.mk | 2 | ||||
-rw-r--r-- | net.BSD/Makefile | 2 | ||||
-rw-r--r-- | net.FreeBSD/Makefile | 2 | ||||
-rw-r--r-- | net.Linux/Makefile | 2 |
4 files changed, 4 insertions, 4 deletions
@@ -15,7 +15,7 @@ LOCAL_PREFIX= /usr/local PICFLAG?= -fPIC -SYSCONFDIR?= /etc +SYSCONFDIR?= ${PREFIX}/etc INITDIR?= ${SYSCONFDIR}/init.d CONFDIR?= ${SYSCONFDIR}/conf.d diff --git a/net.BSD/Makefile b/net.BSD/Makefile index 14aba582..95391e8f 100644 --- a/net.BSD/Makefile +++ b/net.BSD/Makefile @@ -1,4 +1,4 @@ -DIR= ${RC_LIB}/net +DIR= ${PREFIX}/${RC_LIB}/net INC= ifconfig.sh MK= ../mk diff --git a/net.FreeBSD/Makefile b/net.FreeBSD/Makefile index 513cd77a..da75fc37 100644 --- a/net.FreeBSD/Makefile +++ b/net.FreeBSD/Makefile @@ -1,4 +1,4 @@ -DIR= ${RC_LIB}/net +DIR= ${PREFIX}/${RC_LIB}/net INC= iwconfig.sh MK= ../mk diff --git a/net.Linux/Makefile b/net.Linux/Makefile index fd6d0328..628f5f40 100644 --- a/net.Linux/Makefile +++ b/net.Linux/Makefile @@ -1,4 +1,4 @@ -DIR= ${RC_LIB}/net +DIR= ${PREFIX}/${RC_LIB}/net INC= adsl.sh apipa.sh arping.sh bonding.sh br2684ctl.sh bridge.sh ccwgroup.sh \ clip.sh ifconfig.sh ifplugd.sh ip6to4.sh ipppd.sh iproute2.sh \ iwconfig.sh netplugd.sh pppd.sh pump.sh tuntap.sh udhcpc.sh vlan.sh |