summaryrefslogtreecommitdiff
path: root/cmake/os
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
commitc1852204727279dc434fbe117843933446265089 (patch)
treee31eb158f00f9b2f089a8131a79c4dbf0995cdb0 /cmake/os
parent1e1985eba70a9f18a7ea129a869bcd7e219419c4 (diff)
downloadmariadb-git-c1852204727279dc434fbe117843933446265089.tar.gz
GCC's link option only take a single hyphen.
Diffstat (limited to 'cmake/os')
-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)