diff options
author | Daniel Baumann <daniel@debian.org> | 2012-12-30 19:51:33 +0100 |
---|---|---|
committer | Daniel Baumann <mail@daniel-baumann.ch> | 2013-05-06 14:50:03 +0200 |
commit | 2eba55644329e85693bddada2226ac8c66713896 (patch) | |
tree | e9128f08a5839740040b9d257fc755b36dace490 | |
parent | 1ca3077055f1b9d8aa3214389541f02fc93c2e8b (diff) | |
download | vyos-live-build-2eba55644329e85693bddada2226ac8c66713896.tar.gz vyos-live-build-2eba55644329e85693bddada2226ac8c66713896.zip |
Dropping support for now unused includes feature in package lists.
-rwxr-xr-x | functions/packagelists.sh | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/functions/packagelists.sh b/functions/packagelists.sh index aad1ea2d3..df58679a6 100755 --- a/functions/packagelists.sh +++ b/functions/packagelists.sh @@ -107,22 +107,6 @@ Expand_packagelist () _LB_ENABLED=1 ;; - \#*) - if [ ${_LB_ENABLED} -ne 1 ] - then - continue - fi - - # Find includes - _LB_INCLUDES="$(echo "${_LB_LINE}" | sed -n \ - -e 's|^#<include> \([^ ]*\)|\1|gp' \ - -e 's|^#include <\([^ ]*\)>|\1|gp')" - - # Add to queue - _LB_EXPAND_QUEUE="$(echo ${_LB_EXPAND_QUEUE} ${_LB_INCLUDES} | - sed -e 's|[ ]*$||' -e 's|^[ ]*||')" - ;; - *) if [ ${_LB_ENABLED} -eq 1 ] then |