diff options
Diffstat (limited to 'lib/metadata')
-rw-r--r-- | lib/metadata/proteanos.sh | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/lib/metadata/proteanos.sh b/lib/metadata/proteanos.sh index c135e0f..2638c67 100644 --- a/lib/metadata/proteanos.sh +++ b/lib/metadata/proteanos.sh @@ -185,8 +185,17 @@ _ob_get_system_path_proteanos() fi ;; 'build-helper') - if [ ${#} -eq 0 ]; then - printf '@@LIBDIR@@' + # helper_package + if [ ${#} -eq 1 ]; then + case "${1}" in + 'opkhelper-3.0') + printf '%s' '@@OPKHELPER_3_0@@' + ;; + *) + _ob_return 1 + return ${?} + ;; + esac else _ob_return 125 return ${?} |