diff options
Diffstat (limited to 'lib/metadata.sh')
-rw-r--r-- | lib/metadata.sh | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/lib/metadata.sh b/lib/metadata.sh index 3ffae71..30aa018 100644 --- a/lib/metadata.sh +++ b/lib/metadata.sh @@ -17,6 +17,18 @@ # You should have received a copy of the GNU General Public License # along with opkbuild. If not, see <http://www.gnu.org/licenses/>. +_ob_metadata_do() +{ + local func= + + func="${1}" + shift 1 + + "_ob_${func}" "${@}" + + return ${?} +} + ob_validate_source_name() { local name= @@ -300,15 +312,3 @@ ob_get_system_path() return ${?} } - -_ob_metadata_do() -{ - local func= - - func="${1}" - shift 1 - - "_ob_${func}" "${@}" - - return ${?} -} |