summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJosh Blum2011-11-08 15:13:02 -0800
committerJosh Blum2011-11-08 15:13:02 -0800
commit0899dfc0ef4cab909271bb9d70cc03c602ca9714 (patch)
treec57d70dccc7bb44b335639f90c78426a08737210
parentd4f209dcfef230e504179a9916c8167fa8d165f4 (diff)
downloadgnuradio-0899dfc0ef4cab909271bb9d70cc03c602ca9714.tar.gz
gnuradio-0899dfc0ef4cab909271bb9d70cc03c602ca9714.tar.bz2
gnuradio-0899dfc0ef4cab909271bb9d70cc03c602ca9714.zip
volk: replace separate_arguments with string replace (performs a whitespace split)
-rw-r--r--volk/lib/CMakeLists.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/volk/lib/CMakeLists.txt b/volk/lib/CMakeLists.txt
index b6a8599a2..092c3ba0d 100644
--- a/volk/lib/CMakeLists.txt
+++ b/volk/lib/CMakeLists.txt
@@ -147,7 +147,7 @@ endmacro(handle_arch)
#create a list of available arches
foreach(arch_line ${arch_lines})
- separate_arguments(args UNIX_COMMAND "${arch_line}")
+ string(REPLACE " " ";" args "${arch_line}")
handle_arch(${args})
endforeach(arch_line)
@@ -205,7 +205,7 @@ endmacro(handle_machine)
#setup the available machines
foreach(machine_line ${machine_lines})
- separate_arguments(args UNIX_COMMAND "${machine_line}")
+ string(REPLACE " " ";" args "${machine_line}")
handle_machine(${args})
endforeach(machine_line)