From b12cb2f507b8ba7acc64e0e8172eb26bae00dc0a Mon Sep 17 00:00:00 2001 From: "Robin H. Johnson" Date: Wed, 28 Dec 2011 20:31:02 +0000 Subject: net/iproute2: POSIX sh compatability: ${x/a/b} invalid The ${x/a/b} shell construct is NOT defined in the POSIX specification, it's a bash addition. Signed-off-by: Robin H. Johnson --- net/iproute2.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net/iproute2.sh b/net/iproute2.sh index 693efe0..bb52e98 100644 --- a/net/iproute2.sh +++ b/net/iproute2.sh @@ -138,7 +138,7 @@ _add_address() # figure out the broadcast address if it is not specified # This must NOT be set for IPv6 addresses - if [ "${address/:}" = "${address}" ]; then + if [ "${address#*:}" = "${address}" ]; then [ -z "$broadcast" ] && broadcast="+" elif [ -n "$broadcast" ]; then eerror "Broadcast keywords are not valid with IPv6 addresses" -- cgit v1.2.3