diff options
author | Daniel Baumann <daniel@debian.org> | 2011-08-05 08:40:03 +0200 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2011-08-05 08:40:03 +0200 |
commit | 8a0da5726657de9024197bdb4c17f35423199a0a (patch) | |
tree | f70338ab1a5ef5dcb1d7278159da60252214d4d1 /scripts/build/lb_config | |
parent | a51393f49bb455b52959eb7e3c6047f6d300ce85 (diff) | |
download | vyos-live-build-8a0da5726657de9024197bdb4c17f35423199a0a.tar.gz vyos-live-build-8a0da5726657de9024197bdb4c17f35423199a0a.zip |
Reverse keywords in suffix of the package list files for consistency.
Previously, config/package-lists/foo.{binary,chroot}.list was used,
now we use config/package-lists/foo.list.{binary,chroot}.
That way, we're using the same single suffix for all files to make
them specific for either binary and chroot, rather than having
an exception to the rule for package list files.
Diffstat (limited to 'scripts/build/lb_config')
-rwxr-xr-x | scripts/build/lb_config | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/build/lb_config b/scripts/build/lb_config index 597cfcf53..a3051b5e9 100755 --- a/scripts/build/lb_config +++ b/scripts/build/lb_config @@ -1393,7 +1393,7 @@ mkdir -p auto/scripts if [ "${CONFIG}" = "clone" ] # FIXME then # Read package selection - echo $(dpkg --get-selections | awk '{ print $1 }') > config/package-lists/local-system.chroot.list + echo $(dpkg --get-selections | awk '{ print $1 }') > config/package-lists/local.list.chroot LB_PACKAGE_LISTS="${LB_PACKAGE_LISTS} local-system" # Read debconf questions |