summaryrefslogtreecommitdiff
path: root/buildstream/data/projectconfig.yaml
diff options
context:
space:
mode:
authorTristan Van Berkom <tristan.vanberkom@codethink.co.uk>2017-06-30 16:26:03 +0900
committerTristan Van Berkom <tristan.vanberkom@codethink.co.uk>2017-06-30 16:26:03 +0900
commitc0ab4259086d27f8501c96d5aa037594202fd1d3 (patch)
treef8bb82b651e19ed41aadc47c42aceaa43a01aea1 /buildstream/data/projectconfig.yaml
parent9bc27e417e4b91298fb210b20a332bd742cd543c (diff)
downloadbuildstream-c0ab4259086d27f8501c96d5aa037594202fd1d3.tar.gz
projectconfig.yaml: Default split rules are now globs
Diffstat (limited to 'buildstream/data/projectconfig.yaml')
-rw-r--r--buildstream/data/projectconfig.yaml34
1 files changed, 17 insertions, 17 deletions
diff --git a/buildstream/data/projectconfig.yaml b/buildstream/data/projectconfig.yaml
index 5837bd4b3..761ff8048 100644
--- a/buildstream/data/projectconfig.yaml
+++ b/buildstream/data/projectconfig.yaml
@@ -138,13 +138,13 @@ split-rules:
# and shared libraries by default.
runtime:
- |
- %{bindir}/.*
+ %{bindir}/*
- |
- %{sbindir}/.*
+ %{sbindir}/*
- |
- %{libexecdir}/.*
+ %{libexecdir}/*
- |
- %{libdir}/lib[^/]*\.so(\.\d+)*
+ %{libdir}/lib*.so*
# The devel domain includes additional things which
# you may need for development.
@@ -154,41 +154,41 @@ split-rules:
# libtool archives.
devel:
- |
- %{includedir}/.*
+ %{includedir}/**
- |
- %{libdir}/lib.*\.a
+ %{libdir}/lib*.a
- |
- %{libdir}/lib.*\.la
+ %{libdir}/lib*.la
- |
- %{libdir}/pkgconfig/.*\.pc
+ %{libdir}/pkgconfig/*.pc
- |
- %{datadir}/pkgconfig/.*\.pc
+ %{datadir}/pkgconfig/*.pc
- |
- %{datadir}/aclocal/.*\.m4
+ %{datadir}/aclocal/*.m4
# The debug domain includes debugging information stripped
# away from libraries and executables
debug:
- |
- %{debugdir}/.*
+ %{debugdir}/**
# The doc domain includes documentation
doc:
- |
- %{docdir}/.*
+ %{docdir}/**
- |
- %{infodir}/.*
+ %{infodir}/**
- |
- %{mandir}/.*
+ %{mandir}/**
# The locale domain includes translations etc
locale:
- |
- %{datadir}/locale/.*
+ %{datadir}/locale/**
- |
- %{datadir}/i18n/.*
+ %{datadir}/i18n/**
- |
- %{datadir}/zoneinfo/.*
+ %{datadir}/zoneinfo/**
# Element Overrides
#