summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorMiko2021-09-09 07:16:57 +0200
committerMiko2021-09-09 07:16:57 +0200
commitaa2e101a230e7d1302649157cb9cd152a88d61fb (patch)
treed0a26e0c4940f1e8fb1f00694efff80640838e99
parentb90049eec941d8bf900a0e2b9984969c97bc271c (diff)
downloadaur-aa2e101a230e.tar.gz
Use CMAKE_BUILD_TYPE=None, instead of Release
The Release build type might add undesirable optimization flags, so the None build type should be used instead. Reported-by: Chris Lane <hidden@email> Signed-off-by: Miko <mikoxyzzz@gmail.com>
-rw-r--r--.SRCINFO2
-rw-r--r--PKGBUILD4
2 files changed, 3 insertions, 3 deletions
diff --git a/.SRCINFO b/.SRCINFO
index f964f6e27c5e..0d501bb08ed3 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,6 +1,6 @@
pkgbase = multimc-git
pkgdesc = Minecraft launcher with ability to manage multiple instances.
- pkgver = 0.6.12.r182.g6c9dc4c8
+ pkgver = 0.6.13.r0.ge2355eb2
pkgrel = 1
url = https://multimc.org/
arch = i686
diff --git a/PKGBUILD b/PKGBUILD
index 7f8fa69e549a..212381aa2884 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,7 +2,7 @@
# Contributor: Cheru Berhanu <aur attt cheru doot dev>
pkgname=multimc-git
-pkgver=0.6.12.r182.g6c9dc4c8
+pkgver=0.6.13.r0.ge2355eb2
pkgrel=1
pkgdesc="Minecraft launcher with ability to manage multiple instances."
arch=('i686' 'x86_64')
@@ -48,7 +48,7 @@ build() {
mkdir -p build
cd build
- cmake -DCMAKE_BUILD_TYPE=Release \
+ cmake -DCMAKE_BUILD_TYPE=None \
-DCMAKE_INSTALL_PREFIX="/usr" \
-DMultiMC_LAYOUT=lin-system \
..