aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBreno Leitao <breno.leitao@gmail.com>2017-03-24 20:59:29 +0000
committerWilliam Pitcock <nenolod@dereferenced.org>2017-03-24 23:30:13 +0000
commitedcce1a37dc687472f9955cb7a61e25a022e6909 (patch)
treed79b7a5e41045025a41484b37fa8575742beade1
parenteb4f085009a73d1f2bd65abe5a8c86894155be23 (diff)
downloadaports-edcce1a37dc687472f9955cb7a61e25a022e6909.tar.bz2
aports-edcce1a37dc687472f9955cb7a61e25a022e6909.tar.xz
main/zmap: Renaming files from upstram
Upstream renamed the some files from plain text to markdown (.md) file. Renaming these files on the install functions also, otherwise the files won't be found and the build fails.
-rw-r--r--main/zmap/APKBUILD2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/zmap/APKBUILD b/main/zmap/APKBUILD
index aea95e134a..efdad95ba8 100644
--- a/main/zmap/APKBUILD
+++ b/main/zmap/APKBUILD
@@ -47,7 +47,7 @@ package() {
cd "$_builddir"
make DESTDIR="$pkgdir" install || return 1
- for file in AUTHORS CHANGELOG INSTALL README; do
+ for file in AUTHORS CHANGELOG.md INSTALL.md README.md; do
install -Dm644 "$file" "$pkgdir"/usr/share/doc/zmap/"$file"
done