File: fix-var-quoting.diff

package info (click to toggle)
mysql-connector-c%2B%2B 1.1.9-4
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 4,656 kB
  • sloc: cpp: 44,632; ansic: 2,114; php: 528; sql: 402; xml: 109; makefile: 12
file content (13 lines) | stat: -rw-r--r-- 408 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
--- mysql-connector-c++-1.1.9.orig/CMakeLists.txt
+++ mysql-connector-c++-1.1.9/CMakeLists.txt
@@ -67,8 +67,8 @@
 # CPPFLAGS, CXXFLAGS and LDFLAGS from the environment
 
 SET(FreeBSD11Up False)
-if (${CMAKE_SYSTEM_NAME} STREQUAL "FreeBSD" AND
-    ${CMAKE_SYSTEM_VERSION} GREATER "10")
+if (CMAKE_SYSTEM_NAME STREQUAL "FreeBSD" AND
+    CMAKE_SYSTEM_VERSION GREATER "10")
   SET(FreeBSD11Up True)
 endif()