diff options
author | Pierre Labastie <pierre.labastie@neuf.fr> | 2023-10-31 19:03:59 +0100 |
---|---|---|
committer | Pierre Labastie <pierre.labastie@neuf.fr> | 2023-10-31 19:03:59 +0100 |
commit | 950470d62008583116540dab12b961318320cdbf (patch) | |
tree | ad3b7327c2b88c78552d918e9fb76bbc97eb2cd3 /BLFS/gen-special.sh | |
parent | 816fa9f5cea53092ae9441ac8f3cc57a45e8ff8f (diff) |
compound packages: some subpackages are not built
We remove lines containing "cat" and "EOF", but some subpackage
names may contain "cat" (for example knotifications). the lines
to remove contain also a tag, so change the regexp to >cat
and EOF<
Diffstat (limited to 'BLFS/gen-special.sh')
-rwxr-xr-x | BLFS/gen-special.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/BLFS/gen-special.sh b/BLFS/gen-special.sh index 4e0837c6f8..25fb5f86bd 100755 --- a/BLFS/gen-special.sh +++ b/BLFS/gen-special.sh @@ -124,7 +124,7 @@ EOF # Note that only xorg pages have '&' in them. So for kde # pages, what is extracted it the full tarball name. list_cat="$(sed -n '/>cat.*\.\(md5\|dat\)/,/EOF</p' $file | \ - grep -v 'cat\|EOF\|#' | \ + grep -v '>cat\|EOF<\|#' | \ awk '{ print $NF }' | sed 's/-&.*//')" precpack=NONE |