diff options
author | Bertrand Jacquin <bertrand@jacquin.bzh> | 2014-12-29 20:17:37 +0000 |
---|---|---|
committer | Bertrand Jacquin <bertrand@jacquin.bzh> | 2014-12-29 20:17:37 +0000 |
commit | 0d15e0420c267194abd19ae3898bb19013d40bb8 (patch) | |
tree | 65911bae136aa5d29f23fe819d81d8f6ea895fd6 | |
parent | profiles/enlightenment/build: Enable ruby22 RUBY_TARGETS (diff) | |
download | portage-0d15e0420c267194abd19ae3898bb19013d40bb8.tar.xz |
profiles/common: Fix __drop-nls-man-pages when FEATURES does not contain noman
-rw-r--r-- | profiles/common/profile.bashrc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/profiles/common/profile.bashrc b/profiles/common/profile.bashrc index 7998c808..93166759 100644 --- a/profiles/common/profile.bashrc +++ b/profiles/common/profile.bashrc @@ -1,5 +1,6 @@ function __drop-nls-man-pages () { - if ! has noman ${FEATURES} ; then + # FEATURES=noman already take care of deleting man-pages + if has noman ${FEATURES} ; then return 0 fi |