summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorVitalyR2024-12-27 18:14:16 +0800
committerVitalyR2024-12-27 18:14:16 +0800
commiteb41a525d3d4d47415b9fb820fb7b7ccdab010a7 (patch)
tree4eb3c96394bd55ac477f60095d7c63846a04a0f6
parentfc600d9d6502faae9df8afef586385ce15d789c9 (diff)
downloadaur-eb41a525d3d4d47415b9fb820fb7b7ccdab010a7.tar.gz
feat: use mps installed in /usr by default
-rw-r--r--.SRCINFO2
-rw-r--r--PKGBUILD8
2 files changed, 5 insertions, 5 deletions
diff --git a/.SRCINFO b/.SRCINFO
index c61265925118..56f9da15c909 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = emacs-pgtk-igc-git
pkgdesc = GNU Emacs. Development branch, with PGTK and IGC enabled.
pkgver = 31.0.50.175856
- pkgrel = 1
+ pkgrel = 2
url = http://www.gnu.org/software/emacs/
install = emacs-git.install
arch = x86_64
diff --git a/PKGBUILD b/PKGBUILD
index 7df2e29b9f2f..3ed31d7098ca 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -125,7 +125,7 @@ else
pkgname="emacs-pgtk-igc-git"
fi
pkgver=31.0.50.175856
-pkgrel=1
+pkgrel=2
pkgdesc="GNU Emacs. Development branch, with PGTK and IGC enabled."
arch=('x86_64')
url="http://www.gnu.org/software/emacs/"
@@ -190,11 +190,11 @@ if [[ $CLANG == "YES" ]]; then
if [[ ! $MOLD == "YES" ]]; then
makedepends+=('mold')
export LD="lld"
- export LDFLAGS+=" -L$MPS"
+ export LDFLAGS+=" -L$MPS/lib"
export CCFLAGS+=' -fuse-ld=lld'
export CXXFLAGS+=' -fuse-ld=lld'
- export CPPFLAGS+=" -I$MPS"
- export CFLAGS+=" -I$MPS --ld-path=/usr/bin/mold"
+ export CPPFLAGS+=" -I$MPS/include"
+ export CFLAGS+=" -I$MPS/include --ld-path=/usr/bin/mold"
export CXXFLAGS+=" --ld-path=/usr/bin/mold"
else
makedepends+=('lld')