mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-18 22:54:00 +00:00
alarm/dtc145 Fix yylloc error during compilation
This should be a noop change to the existing dtc145 .pkg files, but in case you want to recently compile it from scratch you will get this error: /usr/bin/ld: dtc-parser.tab.o:PKGBUILDs/alarm/dtc145/src/dtc-1.4.5/dtc-parser.tab.c:1086: multiple definition of `yylloc'; dtc-lexer.lex.o:PKGBUILDs/alarm/dtc145/src/dtc-1.4.5/dtc-lexer.l:41: first defined here Seems that the usual fix for this (including in the linux kernel) is to just remove the extra "YYLTYPE yylloc;" line. Let's do that with a simple sed in our PKGBUILD
This commit is contained in:
parent
6d2358abd6
commit
b1eb964380
1 changed files with 1 additions and 0 deletions
|
@ -22,6 +22,7 @@ prepare() {
|
|||
cd dtc-$pkgver
|
||||
sed -i 's/-Werror//' Makefile
|
||||
sed -i 's/python\b/python2/' tests/run_tests.sh
|
||||
sed -i 's/YYLTYPE yylloc;//g' dtc-lexer.l # fix multiple definitions error
|
||||
}
|
||||
|
||||
build() {
|
||||
|
|
Loading…
Reference in a new issue