diff options
author | sjaz <sjaz@5417fbe8-f217-4b02-8779-1006273d7864> | 2009-08-06 17:09:06 +0000 |
---|---|---|
committer | sjaz <sjaz@5417fbe8-f217-4b02-8779-1006273d7864> | 2009-08-06 17:09:06 +0000 |
commit | 0abb8092263fc2e9ae4d2eb3fa7db63553a9f348 (patch) | |
tree | 4cbdce25532f8eb7d4207a10f37681d23e6fc5e5 /src | |
parent | 3d2621349c9044d23adb5ee3c785897846cbe4c7 (diff) |
Fix Makefile/CMakeLists.txt with the removal of mydbgen
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@2426 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'src')
-rw-r--r-- | src/Makefile | 1 | ||||
-rw-r--r-- | src/bin/CMakeLists.txt | 6 |
2 files changed, 1 insertions, 6 deletions
diff --git a/src/Makefile b/src/Makefile index 9ea6e502b..a68409220 100644 --- a/src/Makefile +++ b/src/Makefile @@ -120,7 +120,6 @@ install: services test -d ${INSTDIR}/data || mkdir ${INSTDIR}/data (cd ../lang ; $(MAKE) install) $(CP) ../data/* $(INSTDIR)/data - $(INSTALL) bin/mydbgen $(INSTDIR)/data/mydbgen test -d $(INSTDIR)/data/backups || mkdir $(INSTDIR)/data/backups test -d $(INSTDIR)/data/logs || mkdir $(INSTDIR)/data/logs @if [ "$(INSTDIR)/data/modules" ] ; then \ diff --git a/src/bin/CMakeLists.txt b/src/bin/CMakeLists.txt index 22bcc08bf..5b50147ee 100644 --- a/src/bin/CMakeLists.txt +++ b/src/bin/CMakeLists.txt @@ -4,9 +4,5 @@ if(NOT WIN32) install(PROGRAMS ${CMAKE_CURRENT_BINARY_DIR}/anoperc DESTINATION bin ) - # Add anoperc to list of files for CPack to ignore - add_to_cpack_ignored_files("anoperc$") - install(PROGRAMS ${CMAKE_CURRENT_SOURCE_DIR}/mydbgen - DESTINATION data - ) + endif(NOT WIN32) |