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
|
# 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
|
# inside the PKGBUILD. As a workaround, we use tcc to build a debug build
|
||||||
# that does work, so we can generate the manpages.
|
# that does work, so we can generate the manpages.
|
||||||
CFLAGS= make man
|
CFLAGS= LDFLAGS= make man
|
||||||
}
|
}
|
||||||
|
|
||||||
package() {
|
package() {
|
||||||
|
|
|
@ -30,7 +30,7 @@ build() {
|
||||||
# The default CFLAGS for some reason causes vieter to segfault if used
|
# 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
|
# inside the PKGBUILD. As a workaround, we use tcc to build a debug build
|
||||||
# that does work, so we can generate the manpages.
|
# that does work, so we can generate the manpages.
|
||||||
CFLAGS= make man
|
CFLAGS= LDFLAGS= make man
|
||||||
}
|
}
|
||||||
|
|
||||||
package() {
|
package() {
|
||||||
|
|
Loading…
Reference in New Issue