From f22a92a655ed76dfef524fc93995be23fea58f6f Mon Sep 17 00:00:00 2001 From: "Hongli Lai (Phusion)" Date: Wed, 2 Jun 2010 17:09:17 +0200 Subject: [PATCH] Fix compilation of libev on noexec filesystems --- Rakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Rakefile b/Rakefile index 618ec87b50..bc7d527e14 100644 --- a/Rakefile +++ b/Rakefile @@ -186,7 +186,7 @@ if USE_VENDORED_LIBEV task :libev => "ext/libev/.libs/libev.a" file "ext/libev/Makefile" => ["ext/libev/configure", "ext/libev/config.h.in", "ext/libev/Makefile.am"] do - sh "cd ext/libev && ./configure --disable-shared --enable-static" + sh "cd ext/libev && sh ./configure --disable-shared --enable-static" end libev_sources = Dir["ext/libev/{*.c,*.h}"]