diff options
author | Patrick McDermott <patrick.mcdermott@libiquity.com> | 2021-01-10 05:47:36 (EST) |
---|---|---|
committer | Patrick McDermott <patrick.mcdermott@libiquity.com> | 2021-01-10 05:47:36 (EST) |
commit | 512cbb7a445848eb9055fa9343b7aff8a2106743 (patch) | |
tree | 808aa09d5a7781b591a56ed229e86318ff14388d /mkpkgs | |
parent | 152544d4634485cfd8d34475461fedd346684d40 (diff) |
mkpkgs: New PKGS variable
Diffstat (limited to 'mkpkgs')
-rwxr-xr-x | mkpkgs | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -2,7 +2,11 @@ set -eu -for pkg in libcurl.4; do +PKGS=' + libcurl.4 + ' + +for pkg in ${PKGS}; do # These are installed into section "base" because these packages don't # semantically belong anywhere else. They can't be installed into # "lib", because opkbuild would append ":${Host-Arch}" to their names, |