diff options
| author | Tomas Chvatal <scarabeus@gentoo.org> | 2009-05-22 13:23:50 +0200 |
|---|---|---|
| committer | Tomas Chvatal <scarabeus@gentoo.org> | 2009-05-22 13:24:36 +0200 |
| commit | 059d0a4459c457c3441eeac716f96cf4c9595813 (patch) | |
| tree | 53da8f2d48bd8a7c3bbb2f6b5d83bf2ab8f56be0 | |
| parent | 12e1a9a66119a2ff1e74b363ec70779c2c725fdc (diff) | |
| download | kde-059d0a4459c457c3441eeac716f96cf4c9595813.tar.gz kde-059d0a4459c457c3441eeac716f96cf4c9595813.tar.bz2 kde-059d0a4459c457c3441eeac716f96cf4c9595813.zip | |
[eclasses] In bash int must be retruned. Fix comment.
| -rw-r--r-- | eclass/kde4-functions.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/kde4-functions.eclass b/eclass/kde4-functions.eclass index 740c580d48e..6a194e40349 100644 --- a/eclass/kde4-functions.eclass +++ b/eclass/kde4-functions.eclass @@ -122,8 +122,8 @@ done enable_selected_linguas() { local lingua sr_mess wp - # if there is no lingas defined we enable everything - [[ ${LINGUAS:?"FALSE"} = FALSE ]] && return + # if there is no linguas defined we enable everything + [[ ${LINGUAS:?"FALSE"} = FALSE ]] && return 0 # ebuild overridable linguas directory definition KDE_LINGUAS_DIR=${KDE_LINGUAS_DIR:="${S}/po"} cd "${KDE_LINGUAS_DIR}" || die "wrong linguas dir specified" |
