summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Johns <chrisj@rtems.org>2014-08-27 15:25:50 +1000
committerChris Johns <chrisj@rtems.org>2014-08-27 15:25:50 +1000
commitb55985ad7aebc3f169a4de7ee86ea14b3e80f2c1 (patch)
tree5c20f31fe0ef48d5e5c57b299a8f0254c4817329
parentab49c784dd1df2bb50dc846f0f6749532b929008 (diff)
linkers: Fix the path to libelf.HEADlinkers
-rw-r--r--linkers/wscript4
1 files changed, 2 insertions, 2 deletions
diff --git a/linkers/wscript b/linkers/wscript
index c6d1d31..9a809fb 100644
--- a/linkers/wscript
+++ b/linkers/wscript
@@ -215,10 +215,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)