diff options
author | Adam <Adam@anope.org> | 2010-11-01 17:36:30 -0400 |
---|---|---|
committer | Adam <Adam@anope.org> | 2010-11-01 17:36:30 -0400 |
commit | daa97f034372496e50d99e83cddbfe6c265ebe15 (patch) | |
tree | 3eaf837be8c685caa5c106e70eb3f17acff160a2 | |
parent | 3edc6d70b9b7d3da642f46c90a876a606ba76ab3 (diff) |
Fixed make install because Changes.lang is dead
-rw-r--r-- | CMakeLists.txt | 3 | ||||
-rw-r--r-- | docs/CMakeLists.txt | 2 |
2 files changed, 1 insertions, 4 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 6b1efe788..b5a910f59 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -474,9 +474,6 @@ if(WIN32) install(FILES ${Anope_SOURCE_DIR}/src/win32/anope.bat DESTINATION bin ) - install(FILES ${Anope_SOURCE_DIR}/docs/Changes ${Anope_SOURCE_DIR}/docs/Changes.conf ${Anope_SOURCE_DIR}/docs/Changes.lang - DESTINATION . - ) endif(WIN32) # Only process the CPack section if we have CPack diff --git a/docs/CMakeLists.txt b/docs/CMakeLists.txt index 6d0ccbe28..8525ecc64 100644 --- a/docs/CMakeLists.txt +++ b/docs/CMakeLists.txt @@ -7,7 +7,7 @@ if(WIN32) # Add README.txt to list of files for CPack to ignore add_to_cpack_ignored_files("README.txt$" TRUE) endif(IN_SOURCE) - set(DOCS DEFCON FAQ INSTALL LANGUAGE MODULES NEWS ${CMAKE_CURRENT_BINARY_DIR}/README.txt WIN32.txt) + set(DOCS Changes Changes.conf DEFCON FAQ INSTALL LANGUAGE MODULES NEWS ${CMAKE_CURRENT_BINARY_DIR}/README.txt WIN32.txt) install(FILES ${DOCS} DESTINATION docs ) |