aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Morgan <jumanjiman@gmail.com>2016-02-19 00:23:55 +0000
committerTimo Teräs <timo.teras@iki.fi>2016-02-23 08:41:58 +0000
commit23225b2b4b29e758ed7e93eeda6e24816d95ea8f (patch)
treed2bef8869dbb9488bdd2ecc2fe9521af6cf8607f
parentb059c5b3ae8866de0f77e8c29085f411c8f1be0b (diff)
downloadalpine_aports-160223.tar.bz2
alpine_aports-160223.tar.xz
alpine_aports-160223.zip
testing/editorconfig: allow multi-line value parsingv160223
-rw-r--r--testing/editorconfig/APKBUILD3
1 files changed, 2 insertions, 1 deletions
diff --git a/testing/editorconfig/APKBUILD b/testing/editorconfig/APKBUILD
index d011a4d218..8f6fd37f45 100644
--- a/testing/editorconfig/APKBUILD
+++ b/testing/editorconfig/APKBUILD
@@ -2,7 +2,7 @@
2# Maintainer: Paul Morgan <jumanjiman@gmail.com> 2# Maintainer: Paul Morgan <jumanjiman@gmail.com>
3pkgname=editorconfig 3pkgname=editorconfig
4pkgver=0.12.0 4pkgver=0.12.0
5pkgrel=0 5pkgrel=1
6pkgdesc="EditorConfig core library written in C (for use by plugins supporting EditorConfig parsing)" 6pkgdesc="EditorConfig core library written in C (for use by plugins supporting EditorConfig parsing)"
7url="https://github.com/editorconfig/editorconfig-core-c" 7url="https://github.com/editorconfig/editorconfig-core-c"
8arch="x86_64" 8arch="x86_64"
@@ -31,6 +31,7 @@ build() {
31 cmake . \ 31 cmake . \
32 -DCMAKE_BUILD_TYPE=Release \ 32 -DCMAKE_BUILD_TYPE=Release \
33 -DCMAKE_INSTALL_PREFIX=/usr \ 33 -DCMAKE_INSTALL_PREFIX=/usr \
34 -DINI_ALLOW_MULTILINE=1 \
34 || return 1 35 || return 1
35 make || return 1 36 make || return 1
36} 37}