diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2009-06-03 11:08:52 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2009-06-03 11:08:52 +0000 |
commit | 628cbfc707b23d477603f64f8ee6a48f0097b63c (patch) | |
tree | e2d89e667a96ae1d720274fa37a2e0f31a1432ee /core | |
parent | 8242328d69660f91932066160a606187ad81f141 (diff) | |
download | aports-628cbfc707b23d477603f64f8ee6a48f0097b63c.tar.bz2 aports-628cbfc707b23d477603f64f8ee6a48f0097b63c.tar.xz |
core/build-base: added g++ to depends
So many packages using autotools checks for g++ without using it. We add
g++ to build-base so we are sure its always there.
Diffstat (limited to 'core')
-rw-r--r-- | core/build-base/APKBUILD | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/core/build-base/APKBUILD b/core/build-base/APKBUILD index 1d42d78180..32c4e93b62 100644 --- a/core/build-base/APKBUILD +++ b/core/build-base/APKBUILD @@ -1,8 +1,9 @@ +# Maintainer: Natanael Copa <ncopa@alpinelinux.org> pkgname=build-base -pkgver=0.1 +pkgver=0.2 url=http://dev.alpinelinux.org/cgit pkgdesc="Meta package for build base" -depends="binutils gcc make patch uclibc-dev" +depends="binutils gcc make patch uclibc-dev g++" license=none build() { |