summaryrefslogtreecommitdiff
path: root/cmake
diff options
context:
space:
mode:
authorDavi Arnaut <davi.arnaut@oracle.com>2010-10-20 19:25:28 -0200
committerDavi Arnaut <davi.arnaut@oracle.com>2010-10-20 19:25:28 -0200
commit9129cb184b5b443f0c863720c44e22875438235e (patch)
treee31eb158f00f9b2f089a8131a79c4dbf0995cdb0 /cmake
parent6997cff45975168618f387e380a3ce62ac93bc8d (diff)
downloadmariadb-git-9129cb184b5b443f0c863720c44e22875438235e.tar.gz
GCC's link option only take a single hyphen.
Diffstat (limited to 'cmake')
-rw-r--r--cmake/os/Linux.cmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmake/os/Linux.cmake b/cmake/os/Linux.cmake
index 946e020d6f4..10d3a719609 100644
--- a/cmake/os/Linux.cmake
+++ b/cmake/os/Linux.cmake
@@ -33,7 +33,7 @@ ENDFOREACH()
# Ensure we have clean build for shared libraries
# without unresolved symbols
-SET(LINK_FLAG_NO_UNDEFINED "--Wl,--no-undefined")
+SET(LINK_FLAG_NO_UNDEFINED "-Wl,--no-undefined")
# 64 bit file offset support flag
SET(_FILE_OFFSET_BITS 64)