summaryrefslogtreecommitdiff
path: root/linkers
diff options
context:
space:
mode:
authorChris Johns <chrisj@rtems.org>2014-09-13 10:47:07 +1000
committerChris Johns <chrisj@rtems.org>2014-09-13 10:47:07 +1000
commit749ddf1ed53c3903823eed031649441a59edd264 (patch)
tree1f80d2a456e66b579cb18e2a1db328286659d4a9 /linkers
parent543a4d1e17ccfd3233f4d775f5e97637436cd2e2 (diff)
waf: Include waf in the souce tree and updated README on building.
Add support to build all parts of The RTEMS Tools project.
Diffstat (limited to 'linkers')
-rw-r--r--linkers/wscript4
1 files changed, 2 insertions, 2 deletions
diff --git a/linkers/wscript b/linkers/wscript
index 400a792..9ab4685 100644
--- a/linkers/wscript
+++ b/linkers/wscript
@@ -220,10 +220,10 @@ def bld_libelf(bld):
# understand.
#
if sys.platform == 'win32':
- m4_rule = 'type ${SRC} | m4 -D SRCDIR=../' + libelf[:-1] + '> ${TGT}"'
+ m4_rule = 'type ${SRC} | m4 -D SRCDIR=../linkers/' + libelf[:-1] + '> ${TGT}"'
includes = ['win32']
else:
- m4_rule = 'm4 -D SRCDIR=../' + libelf[:-1] + ' ${SRC} > ${TGT}'
+ m4_rule = 'm4 -D SRCDIR=../linkers/' + libelf[:-1] + ' ${SRC} > ${TGT}'
includes = []
bld(target = 'libelf_convert.c', source = libelf + 'libelf_convert.m4', rule = m4_rule)