forked from vieter-v/vieter
fix(arch): also blank LDFLAGS for debug build
parent
0e8e7223ab
commit
2abbc11118
2
PKGBUILD
2
PKGBUILD
|
@ -22,7 +22,7 @@ build() {
|
|||
# The default CFLAGS for some reason causes vieter to segfault if used
|
||||
# inside the PKGBUILD. As a workaround, we use tcc to build a debug build
|
||||
# that does work, so we can generate the manpages.
|
||||
CFLAGS= make man
|
||||
CFLAGS= LDFLAGS= make man
|
||||
}
|
||||
|
||||
package() {
|
||||
|
|
|
@ -30,7 +30,7 @@ build() {
|
|||
# The default CFLAGS for some reason causes vieter to segfault if used
|
||||
# inside the PKGBUILD. As a workaround, we use tcc to build a debug build
|
||||
# that does work, so we can generate the manpages.
|
||||
CFLAGS= make man
|
||||
CFLAGS= LDFLAGS= make man
|
||||
}
|
||||
|
||||
package() {
|
||||
|
|
Loading…
Reference in New Issue