diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2022-06-16 10:47:21 +0200 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2022-06-16 10:52:15 +0200 |
commit | 0764b33b2f10203925137dba1a3278defd800a7f (patch) | |
tree | 4697492e2b7da26f0665844293ff46a7e93e09e7 | |
parent | 2994ab467e4fe778e991b6228749812140e84ca2 (diff) | |
download | aports-0764b33b2f10203925137dba1a3278defd800a7f.tar.gz aports-0764b33b2f10203925137dba1a3278defd800a7f.tar.bz2 aports-0764b33b2f10203925137dba1a3278defd800a7f.tar.xz |
main/build-base: set MIT license
This package does not contain anything but dependencies. Set MIT license
to avoid questions.
(cherry picked from commit 00b7cb49a9ed9e94a7427bee46f1839824650034)
-rw-r--r-- | main/build-base/APKBUILD | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/main/build-base/APKBUILD b/main/build-base/APKBUILD index 7dff94e7ecf..709b5eec6bd 100644 --- a/main/build-base/APKBUILD +++ b/main/build-base/APKBUILD @@ -1,7 +1,7 @@ # Maintainer: Natanael Copa <ncopa@alpinelinux.org> pkgname=build-base pkgver=0.5 -pkgrel=2 +pkgrel=3 url=http://dev.alpinelinux.org/cgit pkgdesc="Meta package for build base" depends="binutils file gcc g++ make libc-dev fortify-headers patch" @@ -11,7 +11,7 @@ if [ "$CHOST" != "$CTARGET" ]; then depends="binutils-$CTARGET_ARCH gcc-$CTARGET_ARCH g++-$CTARGET_ARCH $depends" fi arch="noarch" -license=none +license="MIT" options="!check" build() { |