summaryrefslogtreecommitdiff
path: root/buildstream/data
diff options
context:
space:
mode:
authorJürg Billeter <j@bitron.ch>2019-02-02 05:46:54 +0100
committerJürg Billeter <j@bitron.ch>2019-02-13 11:48:45 +0100
commit14db3287d37e31f54ccc6a94917cd62dd2b2ec0c (patch)
treed8bd3854e3de27dd45c92efd4d9164d41804d1a0 /buildstream/data
parent8c6baf2360a756562291a9b3f398aaa6d5f06491 (diff)
downloadbuildstream-14db3287d37e31f54ccc6a94917cd62dd2b2ec0c.tar.gz
projectconfig.yaml: Consistently include directories in split rules
Most split rules already included the relevant directories themselves in addition to the directory contents. Add the missing bin, sbin, and libexec directories. This is required to fix tests with the following commit that changes list_relative_paths() to return all directories.
Diffstat (limited to 'buildstream/data')
-rw-r--r--buildstream/data/projectconfig.yaml6
1 files changed, 6 insertions, 0 deletions
diff --git a/buildstream/data/projectconfig.yaml b/buildstream/data/projectconfig.yaml
index 2a6b09a15..ee4055cf5 100644
--- a/buildstream/data/projectconfig.yaml
+++ b/buildstream/data/projectconfig.yaml
@@ -91,10 +91,16 @@ split-rules:
# and shared libraries by default.
runtime:
- |
+ %{bindir}
+ - |
%{bindir}/*
- |
+ %{sbindir}
+ - |
%{sbindir}/*
- |
+ %{libexecdir}
+ - |
%{libexecdir}/*
- |
%{libdir}/lib*.so*