diff options
author | P. J. McDermott <pjm@nac.net> | 2014-02-25 13:16:28 (EST) |
---|---|---|
committer | P. J. McDermott <pjm@nac.net> | 2014-02-25 13:16:28 (EST) |
commit | e4e9b382499329a499459df0022108766426c2ac (patch) | |
tree | 8df466c2609868cdfc0ba0bcb5b673921e4dd521 /lib/common.sh | |
parent | 06b4ef4c6fa9f4bdbeec62a2513f0db9a93176c1 (diff) | |
parent | 2dfe7dd1fa038db1bd36247938d07e6a254fa663 (diff) |
Merge branch 'feature/drop-libopkbuild-dep'.
Conflicts:
configure
Diffstat (limited to 'lib/common.sh')
-rw-r--r-- | lib/common.sh | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/common.sh b/lib/common.sh index c9fdc22..52833f4 100644 --- a/lib/common.sh +++ b/lib/common.sh @@ -22,12 +22,12 @@ _OH_COMMON_SM='true' oh_init() { - ob_use locale - ob_use output + oh_use locale + oh_use output # Since nothing other than opkhelper is supposed to use libopkhelper, we can # do strange things like affecting application-wide locale settings from the # library and assume that no one will play with them. - ob_set_locale_path '@@LOCALEDIR@@/%s/LC_MESSAGES/%s.ms' - ob_set_text_domain 'opkhelper' + oh_set_locale_path '@@LOCALEDIR@@/%s/LC_MESSAGES/%s.ms' + oh_set_text_domain 'opkhelper' } |