diff options
Diffstat (limited to 'main')
-rw-r--r-- | main/musl/APKBUILD | 4 | ||||
-rw-r--r-- | main/musl/musl.post-install | 6 | ||||
-rw-r--r--[l---------] | main/musl/musl.post-upgrade | 7 |
3 files changed, 8 insertions, 9 deletions
diff --git a/main/musl/APKBUILD b/main/musl/APKBUILD index 73492167ad..b0974483f2 100644 --- a/main/musl/APKBUILD +++ b/main/musl/APKBUILD @@ -2,7 +2,7 @@ # Maintainer: Timo Teräs <timo.teras@iki.fi> pkgname=musl pkgver=1.1.2 -pkgrel=1 +pkgrel=2 pkgdesc="the musl c library (libc) implementation" url="http://www.musl-libc.org/" arch="all" @@ -10,7 +10,7 @@ license="MIT" depends="" depends_dev="!uclibc-dev" makedepends="$depends_dev" -install="$pkgname.post-install $pkgname.post-upgrade" +install="$pkgname.post-upgrade" subpackages="$pkgname-dev $pkgname-utils" source="http://www.musl-libc.org/releases/musl-$pkgver.tar.gz 0001-v1.1.2-to-66fcde4a.patch diff --git a/main/musl/musl.post-install b/main/musl/musl.post-install deleted file mode 100644 index 9a86fd0734..0000000000 --- a/main/musl/musl.post-install +++ /dev/null @@ -1,6 +0,0 @@ -#!/bin/sh - -if ! [ -e /etc/localtime ] && [ -e /etc/zoneinfo/localtime ]; then - mv /etc/zoneinfo/localtime /etc/localtime -fi - diff --git a/main/musl/musl.post-upgrade b/main/musl/musl.post-upgrade index aae353b175..9a86fd0734 120000..100644 --- a/main/musl/musl.post-upgrade +++ b/main/musl/musl.post-upgrade @@ -1 +1,6 @@ -musl.post-install
\ No newline at end of file +#!/bin/sh + +if ! [ -e /etc/localtime ] && [ -e /etc/zoneinfo/localtime ]; then + mv /etc/zoneinfo/localtime /etc/localtime +fi + |