summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Johns <chrisj@rtems.org>2016-04-15 11:43:21 +1000
committerChris Johns <chrisj@rtems.org>2016-04-15 11:59:30 +1000
commitc98555c5f27bbb899a71e6286d6f1054459e2913 (patch)
tree860ea4b8bafa4aa8d8b50bf7a695fcc09d4bd456
parent4.12/rtems-or1k.bset: Update newlib to 2.4.0 (diff)
downloadrtems-source-builder-c98555c5f27bbb899a71e6286d6f1054459e2913.tar.bz2
sb: Do not filter -f options from a BSP.
-rw-r--r--source-builder/sb/config.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/source-builder/sb/config.py b/source-builder/sb/config.py
index f5bd81c..da54ba3 100644
--- a/source-builder/sb/config.py
+++ b/source-builder/sb/config.py
@@ -462,7 +462,7 @@ class file:
if pkg_flags and self.pkgconfig_filter_flags:
fflags = []
for f in pkg_flags.split():
- if not f.startswith('-f') and not f.startswith('-W'):
+ if not f.startswith('-W'):
fflags += [f]
pkg_flags = ' '.join(fflags)
log.trace('pkgconfig: %s: %s' % (flags, pkg_flags))