diff options
author | Arfrever Frehtes Taifersar Arahesis <Arfrever@Gentoo.Org> | 2010-05-27 15:11:03 +0200 |
---|---|---|
committer | Arfrever Frehtes Taifersar Arahesis <Arfrever@Gentoo.Org> | 2010-05-27 15:11:03 +0200 |
commit | a05bba76435d94407fd25549d0552902962baf62 (patch) | |
tree | a73a2b5be707faedde58d3d68945fac6645f47df | |
parent | ec82842814ec2cb9846578ff2ae7a1ccbeec193d (diff) | |
download | portage-a05bba76435d94407fd25549d0552902962baf62.tar.gz portage-a05bba76435d94407fd25549d0552902962baf62.tar.bz2 portage-a05bba76435d94407fd25549d0552902962baf62.zip |
Fix handling of empty third argument of use_with() and use_enable().
-rwxr-xr-x | bin/ebuild.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/ebuild.sh b/bin/ebuild.sh index 4778afbe9..b46d14a63 100755 --- a/bin/ebuild.sh +++ b/bin/ebuild.sh @@ -230,7 +230,7 @@ use_with() { return 1 fi - local UW_SUFFIX=${3:+=$3} + local UW_SUFFIX=${3+=$3} local UWORD=${2:-$1} if useq $1; then @@ -248,7 +248,7 @@ use_enable() { return 1 fi - local UE_SUFFIX=${3:+=$3} + local UE_SUFFIX=${3+=$3} local UWORD=${2:-$1} if useq $1; then |