summaryrefslogtreecommitdiffstats
path: root/scripts/package-metadata.pl
diff options
context:
space:
mode:
authorPaul Spooren <mail@aparcar.org>2024-05-14 12:36:59 +0200
committerPaul Spooren <mail@aparcar.org>2024-05-17 23:21:26 +0300
commitd788ab376f859164df84e2054cbbbb0921943c5b (patch)
tree80d4b0c9cc001aa3a6f0a7a84beb6f40666d5dde /scripts/package-metadata.pl
parent3e5a23639f53f6a5e969f7c243b534f31399fe8a (diff)
downloadopenwrt-d788ab376f859164df84e2054cbbbb0921943c5b.tar.gz
openwrt-d788ab376f859164df84e2054cbbbb0921943c5b.tar.bz2
openwrt-d788ab376f859164df84e2054cbbbb0921943c5b.zip
build: add APK package build capabilities
A new option called `USE_APK` is added which generated APK packages (.apk) instead of OPKG packages (.ipk). Some features like fstools `snapshot` command are not yet ported Signed-off-by: Paul Spooren <mail@aparcar.org>
Diffstat (limited to 'scripts/package-metadata.pl')
-rwxr-xr-xscripts/package-metadata.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/package-metadata.pl b/scripts/package-metadata.pl
index a46f819ab5..2c7d3c624b 100755
--- a/scripts/package-metadata.pl
+++ b/scripts/package-metadata.pl
@@ -373,7 +373,7 @@ sub and_condition($) {
sub gen_condition ($) {
my $condition = shift;
- # remove '!()', just as include/package-ipkg.mk does
+ # remove '!()', just as include/package-pack.mk does
$condition =~ s/[()!]//g;
return join("", map(and_condition($_), split('\|\|', $condition)));
}