Merge pull request #2 from ashleyh/master

Remove uneeded 'rt' library
This commit is contained in:
Thiago de Arruda 2014-02-02 03:36:01 -08:00
commit 930f26d1ed
2 changed files with 2 additions and 2 deletions

View File

@ -13,4 +13,4 @@ sh autogen.sh
./configure --prefix="$prefix"
make
make install
rm "$prefix/lib/"libuv*.so "$prefix/lib/"libuv*.so.*
rm "$prefix/lib/"libuv*.{so,dylib} "$prefix/lib/"libuv*.{so,dylib}.* || true

View File

@ -14,7 +14,7 @@ file( GLOB IO_SOURCES io/*.c )
add_executable (vim ${NEOVIM_SOURCES} ${IO_SOURCES})
target_link_libraries (vim m uv rt pthread)
target_link_libraries (vim m uv pthread)
include(CheckLibraryExists)
check_library_exists(termcap tgetent "" HAVE_LIBTERMCAP)