diff options
author | VitalyR | 2024-12-27 18:14:16 +0800 |
---|---|---|
committer | VitalyR | 2024-12-27 18:14:16 +0800 |
commit | eb41a525d3d4d47415b9fb820fb7b7ccdab010a7 (patch) | |
tree | 4eb3c96394bd55ac477f60095d7c63846a04a0f6 | |
parent | fc600d9d6502faae9df8afef586385ce15d789c9 (diff) | |
download | aur-eb41a525d3d4d47415b9fb820fb7b7ccdab010a7.tar.gz |
feat: use mps installed in /usr by default
-rw-r--r-- | .SRCINFO | 2 | ||||
-rw-r--r-- | PKGBUILD | 8 |
2 files changed, 5 insertions, 5 deletions
@@ -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 @@ -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') |