summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Johns <chrisj@rtems.org>2016-07-25 17:48:34 +1000
committerChris Johns <chrisj@rtems.org>2016-07-25 17:48:34 +1000
commit8fcd500ba51963f83d4c6e6bd760b1630aad122b (patch)
tree52986af4e7620f1b8573c7ccb7b29f723e9746f5
parentd793097d2032ca0ab2d5cf93fa84730865db6c03 (diff)
Process all files to be added to a tar file.
-rw-r--r--rtems.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/rtems.py b/rtems.py
index b2e3285..e4ab3df 100644
--- a/rtems.py
+++ b/rtems.py
@@ -536,7 +536,7 @@ def library_path(library, cc, cflags):
return None
def root_filesystem(bld, name, files, tar, obj):
- tar_rule = 'tar -cf ${TGT} --format=ustar -C ../.. $(echo "${SRC}" | sed -e \'s/\.\.\/\.\.\///\')'
+ tar_rule = 'tar -cf ${TGT} --format=ustar -C ../.. $(echo "${SRC}" | sed -e \'s/\.\.\/\.\.\///g\')'
if windows:
tar_rule = 'sh -c "%s"' % (tar_rule)
bld(name = name + '_tar',