diff options
author | Jo-Philipp Wich <jo@mein.io> | 2019-01-18 12:32:57 +0100 |
---|---|---|
committer | Jo-Philipp Wich <jo@mein.io> | 2019-01-19 14:31:56 +0100 |
commit | 2d9d57b9de230e1f397c1396f4fb7dfae34d3855 (patch) | |
tree | d80c10e4e44c4b81a5d453db222094529224bb7a /scripts | |
parent | 797e5c1c48e6a5b8866504ea42bd7298c63ad3d5 (diff) | |
download | upstream-2d9d57b9de230e1f397c1396f4fb7dfae34d3855.tar.gz upstream-2d9d57b9de230e1f397c1396f4fb7dfae34d3855.tar.bz2 upstream-2d9d57b9de230e1f397c1396f4fb7dfae34d3855.zip |
build: rename .packagesubdirs to .packageauxvars
Subsequent commits will put more auxiliary information into this file,
such as the per-package ABI version, so rename the metadata script
subcommand and file names accordingly.
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/package-metadata.pl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/package-metadata.pl b/scripts/package-metadata.pl index 53bb45a62c..b8c5de298a 100755 --- a/scripts/package-metadata.pl +++ b/scripts/package-metadata.pl @@ -509,7 +509,7 @@ sub gen_package_source() { } } -sub gen_package_subdirs() { +sub gen_package_auxiliary() { parse_package_metadata($ARGV[0]) or exit 1; foreach my $name (sort {uc($a) cmp uc($b)} keys %package) { my $pkg = $package{$name}; @@ -565,7 +565,7 @@ sub parse_command() { /^config$/ and return gen_package_config(); /^kconfig/ and return gen_kconfig_overrides(); /^source$/ and return gen_package_source(); - /^subdirs$/ and return gen_package_subdirs(); + /^pkgaux$/ and return gen_package_auxiliary(); /^license$/ and return gen_package_license(0); /^licensefull$/ and return gen_package_license(1); /^usergroup$/ and return gen_usergroup_list(); @@ -577,7 +577,7 @@ Available Commands: $0 config [file] Package metadata in Kconfig format $0 kconfig [file] [config] [patchver] Kernel config overrides $0 source [file] Package source file information - $0 subdirs [file] Package subdir information in makefile format + $0 pkgaux [file] Package auxiliary variables in makefile format $0 license [file] Package license information $0 licensefull [file] Package license information (full list) $0 usergroup [file] Package usergroup allocation list |