summaryrefslogtreecommitdiffstats
path: root/build
diff options
context:
space:
mode:
authorPatrick McDermott <patrick.mcdermott@libiquity.com>2019-05-18 19:12:36 (EDT)
committer Patrick McDermott <patrick.mcdermott@libiquity.com>2019-05-18 19:12:36 (EDT)
commit654df8d9b8dd848e9b2242c5052072eb49adbb2e (patch)
tree9f621a015276d737904c290f7ff5afaef8d22542 /build
parentffac45a68fac869e70a746b21e71874bc4fb17c4 (diff)
build: Add missing trailing "/" to prefixes
Diffstat (limited to 'build')
-rwxr-xr-xbuild4
1 files changed, 2 insertions, 2 deletions
diff --git a/build b/build
index 999ad21..4d1d603 100755
--- a/build
+++ b/build
@@ -111,9 +111,9 @@ build-gcc-config:
sed "s|^\(#define $(tm_interp_macro)\) \".*\"$$|\1 \"$(elf_interp)\"|" \
"$(tm)/$(tm_file).orig" >"$(tm)/$(tm_file)"
printf '\n#undef %s\n#define %s "%s"\n' STANDARD_EXEC_PREFIX \
- STANDARD_EXEC_PREFIX "$(tgtlibdir)" >>"$(tm)/$(tm_file)"
+ STANDARD_EXEC_PREFIX "$(tgtlibdir)/" >>"$(tm)/$(tm_file)"
printf '\n#undef %s\n#define %s "%s"\n' STANDARD_LIBEXEC_PREFIX \
- STANDARD_LIBEXEC_PREFIX "$(gccexedir)" >>"$(tm)/$(tm_file)"
+ STANDARD_LIBEXEC_PREFIX "$(gccexedir)/" >>"$(tm)/$(tm_file)"
printf '#define %s ""\n' STANDARD_STARTFILE_PREFIX_1 \
STANDARD_STARTFILE_PREFIX_2 >>"$(tm)/$(tm_file)"
[ -e "$(tm)/$(tmake_file).orig" ] || \