This is the mail archive of the
binutils@sourceware.org
mailing list for the binutils project.
[PATCH] gold: fix relocatable sysroot
- From: loic dot yhuel at gmail dot com
- To: binutils at sourceware dot org
- Cc: Loïc Yhuel <loic dot yhuel at softathome dot com>
- Date: Mon, 7 Nov 2016 13:12:48 +0100
- Subject: [PATCH] gold: fix relocatable sysroot
- Authentication-results: sourceware.org; auth=none
From: Loïc Yhuel <loic.yhuel@softathome.com>
2016-11-04 Loïc Yhuel <loic.yhuel@softathome.com>
gold/
* configure.ac: add missing '$'.
* configure: Regenerate.
---
gold/configure | 2 +-
gold/configure.ac | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/gold/configure b/gold/configure
index 343a407..a3ed5c9 100755
--- a/gold/configure
+++ b/gold/configure
@@ -3266,7 +3266,7 @@ fi
sysroot_relocatable=0
if test -n "$sysroot"; then
- case "sysroot" in
+ case "$sysroot" in
"${prefix}" | "${prefix}/"* | \
"${exec_prefix}" | "${exec_prefix}/"* | \
'${prefix}' | '${prefix}/'*| \
diff --git a/gold/configure.ac b/gold/configure.ac
index de3b630..ff9f1fd 100644
--- a/gold/configure.ac
+++ b/gold/configure.ac
@@ -49,7 +49,7 @@ fi
sysroot_relocatable=0
if test -n "$sysroot"; then
- case "sysroot" in
+ case "$sysroot" in
"${prefix}" | "${prefix}/"* | \
"${exec_prefix}" | "${exec_prefix}/"* | \
'${prefix}' | '${prefix}/'*| \
--
2.9.3