diff options
author | Paul Morgan <jumanjiman@gmail.com> | 2016-02-19 00:23:55 +0000 |
---|---|---|
committer | Timo Teräs <timo.teras@iki.fi> | 2016-02-23 08:41:58 +0000 |
commit | 23225b2b4b29e758ed7e93eeda6e24816d95ea8f (patch) | |
tree | d2bef8869dbb9488bdd2ecc2fe9521af6cf8607f /testing/editorconfig | |
parent | b059c5b3ae8866de0f77e8c29085f411c8f1be0b (diff) | |
download | aports-23225b2b4b29e758ed7e93eeda6e24816d95ea8f.tar.bz2 aports-23225b2b4b29e758ed7e93eeda6e24816d95ea8f.tar.xz |
testing/editorconfig: allow multi-line value parsingv160223
Diffstat (limited to 'testing/editorconfig')
-rw-r--r-- | testing/editorconfig/APKBUILD | 3 |
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 @@ # Maintainer: Paul Morgan <jumanjiman@gmail.com> pkgname=editorconfig pkgver=0.12.0 -pkgrel=0 +pkgrel=1 pkgdesc="EditorConfig core library written in C (for use by plugins supporting EditorConfig parsing)" url="https://github.com/editorconfig/editorconfig-core-c" arch="x86_64" @@ -31,6 +31,7 @@ build() { cmake . \ -DCMAKE_BUILD_TYPE=Release \ -DCMAKE_INSTALL_PREFIX=/usr \ + -DINI_ALLOW_MULTILINE=1 \ || return 1 make || return 1 } |