diff options
author | Aaron Ball <nullspoon@oper.io> | 2017-06-23 08:52:48 -0600 |
---|---|---|
committer | Aaron Ball <nullspoon@oper.io> | 2017-06-23 08:52:48 -0600 |
commit | b1721a4a217379be0cff125fc75ef8c9b69ab969 (patch) | |
tree | d96d1d86837bbcb9094e718796f31c950042cca0 | |
parent | 6d14dee44a6809332cf3fcdc08de254ee89830eb (diff) | |
download | portimg-b1721a4a217379be0cff125fc75ef8c9b69ab969.tar.gz portimg-b1721a4a217379be0cff125fc75ef8c9b69ab969.tar.xz |
libpkg:Fixed download source call
Was calling using the old function signature. Updated the call.
Also renamed the Pkgfile source array from 'src' to 'source', which is
the more common name for that array elsewhere.
-rw-r--r-- | lib/pkg.sh | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -67,7 +67,7 @@ function pkgmk { mkdir -p {${PKGSRC},${PKG}} # Download the package source files - pkg_download_src "${PKGSRC}" "${src[@]}" + pkg_download_src "${PORTSDIR}/${port}" "${PKGSRC}" "${source[@]}" cd ${PKGSRC} |