diff options
author | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2019-12-21 01:16:48 +0000 |
---|---|---|
committer | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2019-12-21 01:16:48 +0000 |
commit | 8dd6cd1e8ed01b08a6328e1c842c645cda9ec532 (patch) | |
tree | 4fa087a3b33a583ac9f91e6b287f3fd99cb8f3a0 /system/patch/APKBUILD | |
parent | 47e8187d7bbc157929fcbf6e11e9fa1374c500c2 (diff) | |
download | packages-8dd6cd1e8ed01b08a6328e1c842c645cda9ec532.tar.gz packages-8dd6cd1e8ed01b08a6328e1c842c645cda9ec532.tar.bz2 packages-8dd6cd1e8ed01b08a6328e1c842c645cda9ec532.tar.xz packages-8dd6cd1e8ed01b08a6328e1c842c645cda9ec532.zip |
system/p*: modernise, fix dependencies
Diffstat (limited to 'system/patch/APKBUILD')
-rw-r--r-- | system/patch/APKBUILD | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/system/patch/APKBUILD b/system/patch/APKBUILD index 292076831..1adf32bda 100644 --- a/system/patch/APKBUILD +++ b/system/patch/APKBUILD @@ -7,9 +7,8 @@ url="https://www.gnu.org/software/patch/patch.html" arch="all" license="GPL-3.0+" depends="" -makedepends="" checkdepends="bash ed" -install="" +makedepends="" subpackages="$pkgname-doc" source="https://ftp.gnu.org/gnu/$pkgname/$pkgname-$pkgver.tar.xz allow-missing.patch @@ -19,7 +18,6 @@ source="https://ftp.gnu.org/gnu/$pkgname/$pkgname-$pkgver.tar.xz CVE-2019-13636.patch CVE-2019-13638.patch " -builddir="$srcdir"/$pkgname-$pkgver # secfixes: # 2.7.6-r2: @@ -32,7 +30,6 @@ builddir="$srcdir"/$pkgname-$pkgver # - CVE-2019-13638 build() { - cd "$builddir" ./configure \ --build=$CBUILD \ --host=$CHOST \ @@ -44,7 +41,6 @@ build() { } check() { - cd "$builddir" make SHELL=bash check } |