Commit 480957d3 authored by Casey Strouse's avatar Casey Strouse

Disable selinux support

Missing selinux.h was causing emacs abort the build. ChromeOS doesn't currently use selinux so it's not needed anyway.
parent f34720c8
...@@ -11,7 +11,7 @@ class Emacs < Package ...@@ -11,7 +11,7 @@ class Emacs < Package
depends_on "automake" depends_on "automake"
def self.build def self.build
system "./configure --prefix=/usr/local --without-x --without-makeinfo" system "./configure --prefix=/usr/local --without-x --without-makeinfo --disable-selinux"
system "sed -i '/static void \\*/{ N; /static void \\*\\naligned_alloc/{ s/static //g}}' src/alloc.c" system "sed -i '/static void \\*/{ N; /static void \\*\\naligned_alloc/{ s/static //g}}' src/alloc.c"
system "make" system "make"
end end
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment