summaryrefslogtreecommitdiff
path: root/codecs
diff options
context:
space:
mode:
authorJörg Mayer <jmayer@loplof.de>2010-09-23 07:02:33 +0000
committerJörg Mayer <jmayer@loplof.de>2010-09-23 07:02:33 +0000
commitde68ad306615e1e75546234892a57e7f05bbbd9c (patch)
tree538aef8bdf5d1bf6926857f58e1bbd2dbd6f0ec1 /codecs
parentde916f6bfbc4fb6b30c7da39cb68941ea4e4ee67 (diff)
downloadwireshark-de68ad306615e1e75546234892a57e7f05bbbd9c.tar.gz
H. Sivank <hsivank@gmail.com>
I try to configure Wireshark with cmake on macosx 10.6. It fails with : set_target_properties called with incorrect number of arguments. Attached a patch to fix this issue. svn path=/trunk/; revision=34201
Diffstat (limited to 'codecs')
-rw-r--r--codecs/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/codecs/CMakeLists.txt b/codecs/CMakeLists.txt
index fc0c37e8d7..92fd26a9b2 100644
--- a/codecs/CMakeLists.txt
+++ b/codecs/CMakeLists.txt
@@ -29,4 +29,4 @@ set(CODECS_FILES
add_library(codecs STATIC
${CODECS_FILES}
)
-set_target_properties(codecs PROPERTIES LINK_FLAGS ${WS_LINK_FLAGS})
+set_target_properties(codecs PROPERTIES LINK_FLAGS "${WS_LINK_FLAGS}")