summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tools/gold/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/gold/CMakeLists.txt b/tools/gold/CMakeLists.txt
index ca3ce457d7..15ca8d7f8f 100644
--- a/tools/gold/CMakeLists.txt
+++ b/tools/gold/CMakeLists.txt
@@ -22,7 +22,7 @@ else()
add_custom_command(OUTPUT exportsfile
COMMAND echo "{" > exportsfile
COMMAND grep -q "\\<" ${srcexp} && echo " global:" >> exportsfile || :
- COMMAND sed -e "s/\$\$/;/" -e "s/^/ /" < ${srcexp} >> exportsfile
+ COMMAND sed -e "s/$/;/" -e "s/^/ /" < ${srcexp} >> exportsfile
COMMAND echo " local: *;" >> exportsfile
COMMAND echo "};" >> exportsfile
DEPENDS ${srcexp}