Commit 8e6137da authored by lyxell's avatar lyxell Committed by GitHub

Merge pull request #657 from jam7/update/make

Correct make dependencies need this to install chromebrew from scratch
parents 3995b637 20bf8461
......@@ -6,7 +6,7 @@ class Buildessential < Package
is_fake
depends_on 'gcc'
depends_on 'make'
depends_on 'linuxheaders'
depends_on 'make'
depends_on 'pkgconfig'
end
......@@ -5,6 +5,9 @@ class Make < Package
source_url 'ftp://ftp.gnu.org/gnu/make/make-4.2.tar.bz2'
source_sha1 'd78b84a219b4c16593544f541dff7eb765ce3d74'
depends_on 'gcc' => :build
depends_on 'linuxheaders' => :build
def self.build
system "./configure"
system "./build.sh"
......
......@@ -9,8 +9,8 @@ class Pkgconfig < Package
# depends_on 'buildessential'
# Write dependency to gcc make linuxheaders instead.
depends_on 'gcc'
depends_on 'make'
depends_on 'linuxheaders'
depends_on 'make'
def self.build
# check lib64 on any architectures since it is not a problem to not exist lib64 directory.
......
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