Skip to content

Commit

Permalink
fix: emacs-git disable unneeded upstream features #2613
Browse files Browse the repository at this point in the history
  • Loading branch information
ykelvis committed Jan 6, 2022
1 parent c969354 commit 064952b
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions archlinuxcn/emacs-git/lilac.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@ def pre_build():
if line.startswith('source='):
line = 'source=("emacs-git::git://github.com/emacs-mirror/emacs.git")'

# disable build flags
if '="YES"' in line:
line = line.replace('="YES"', '=')

if line.startswith('XWIDGETS='):
line = 'XWIDGETS="YES"'

Expand Down

0 comments on commit 064952b

Please sign in to comment.