diff options
author | Ned Ludd <solar@gentoo.org> | 2006-11-29 20:26:08 +0000 |
---|---|---|
committer | Ned Ludd <solar@gentoo.org> | 2006-11-29 20:26:08 +0000 |
commit | 232861dd9bfc7bcfd90d67c07cac516e1af412fc (patch) | |
tree | e4f6ef834e86e505e74bfa876fbe3a89d5607356 | |
parent | 1b6cb6e19952d0d7b7bb21a000f39d4519d8cd93 (diff) | |
download | portage-232861dd9bfc7bcfd90d67c07cac516e1af412fc.tar.gz portage-232861dd9bfc7bcfd90d67c07cac516e1af412fc.tar.bz2 portage-232861dd9bfc7bcfd90d67c07cac516e1af412fc.zip |
- no point in forking a call to true when we can simply use the bash internal of : for true
svn path=/main/trunk/; revision=5143
-rwxr-xr-x | bin/misc-functions.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/misc-functions.sh b/bin/misc-functions.sh index 0d7244087..bbfab8456 100755 --- a/bin/misc-functions.sh +++ b/bin/misc-functions.sh @@ -429,4 +429,4 @@ if [ -n "${MISC_FUNCTIONS_ARGS}" ]; then done fi -true +: |