mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-01 05:45:45 +00:00
9a0723ba78
Lsyncd is designed to synchronize a local directory tree with low profile of expected changes to a remote mirror. Lsyncd is especially useful to sync data from a secure area to a not-so-secure area. WWW: https://axkibe.github.io/lsyncd/ PR: 228714 Submitted by: Junichi Satoh <junichi@junichi.org>
15 lines
546 B
Plaintext
15 lines
546 B
Plaintext
--- CMakeLists.txt.orig 2018-03-09 12:39:11 UTC
|
|
+++ CMakeLists.txt
|
|
@@ -104,8 +104,8 @@ add_custom_target( tests
|
|
|
|
# compiling and linking it all together
|
|
add_executable( lsyncd ${LSYNCD_SRC} )
|
|
-target_link_libraries( lsyncd ${LUA_LIBRARIES} )
|
|
+target_link_libraries( lsyncd ${LUA_LIBRARIES} /usr/local/lib/libinotify.so )
|
|
|
|
-install( TARGETS lsyncd RUNTIME DESTINATION bin )
|
|
-install( FILES doc/manpage/lsyncd.1 DESTINATION man )
|
|
+install( TARGETS lsyncd RUNTIME DESTINATION sbin )
|
|
+install( FILES doc/manpage/lsyncd.1 DESTINATION man/man1 )
|
|
|