diff options
author | William Hubbs <williamh@gentoo.org> | 2010-08-09 20:01:15 -0500 |
---|---|---|
committer | William Hubbs <williamh@gentoo.org> | 2010-08-09 20:01:15 -0500 |
commit | d3ccbdb5a94e61e84bdc2d82d450ee8a5e4a22f4 (patch) | |
tree | dc1eec277d6b455b03f32710ae8a4cd3d92f266a /net/iproute2.sh | |
parent | 1cdf85e1cebffd067d21bb66512dc82016a2da69 (diff) |
allow ip to be in /sbin or /bin
This makes it possible for the "ip" program in iproute2 to be installed
in /sbin or /bin.
Diffstat (limited to 'net/iproute2.sh')
-rw-r--r-- | net/iproute2.sh | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/net/iproute2.sh b/net/iproute2.sh index 906a45e0..09a72d73 100644 --- a/net/iproute2.sh +++ b/net/iproute2.sh @@ -1,9 +1,18 @@ # Copyright (c) 2007-2008 Roy Marples <roy@marples.name> # All rights reserved. Released under the 2-clause BSD license. +_ip() +{ + if [ -x /bin/ip ]; then + echo /bin/ip + else + echo /sbin/ip + fi +} + iproute2_depend() { - program /sbin/ip + program $(_ip) provide interface after ifconfig } |