zmap安装配置错误

时间:2013-12-09 05:14:31

标签: makefile install centos

我在CentOS 6.5 64位上安装zmap时遇到问题

我已遵循此处的所有说明:https://zmap.io/download.html

并收到以下错误;

[root@cs307 zmap-1.1.0]# make install
[100%] Built target zmap
Install the project...
-- Install configuration: ""
--
CMake Error at zmap_conf_install.cmake:4 (file):
  file called with incorrect number of arguments
Call Stack (most recent call first):
  cmake_install.cmake:36 (INCLUDE)


make: *** [install] Error 1
[root@cs307 zmap-1.1.0]#

zmap_conf_install.cmake的内容是:

foreach(conf_file blacklist.conf;zmap.conf)
        message(STATUS "")
        if(NOT EXISTS "/etc/zmap/")
                file(INSTALL "conf/" DESTINATION "/etc/zmap")
        endif()
endforeach()

我做错了什么想法?

1 个答案:

答案 0 :(得分:-1)

我创建了/ etc / zmap目录,它对我有用! :)

相关问题