From c6c53c63ba5c18051d8a53d4b2b4e27fa4f96a30 Mon Sep 17 00:00:00 2001 From: nick Date: Wed, 22 Jan 2014 10:39:29 +0000 Subject: [PATCH] Fix compilation on fedora --- Rakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Rakefile b/Rakefile index 2b90f0d..64c701e 100644 --- a/Rakefile +++ b/Rakefile @@ -114,7 +114,7 @@ end def gcc_compile( target, source ) FileUtils.mkdir_p File.dirname( target ) - sh "#{CC} -Isrc -c #{CCFLAGS.join(' ')} -o #{target} #{source} " + sh "#{CC} -I/usr/include/libev -Isrc -c #{CCFLAGS.join(' ')} -o #{target} #{source} " end def gcc_link(target, objects)