Disable debug package so the main package publishes correctly
makepkg's debug split produced a -debug pkg; the upload's head -1 could grab it instead of the main package. !debug yields a single package.
This commit is contained in:
parent
623560cea6
commit
152915198b
1 changed files with 1 additions and 1 deletions
|
|
@ -10,7 +10,7 @@ license=('MIT')
|
||||||
# mlua builds Lua from vendored C source. makepkg's default -flto=auto would
|
# mlua builds Lua from vendored C source. makepkg's default -flto=auto would
|
||||||
# emit GCC LTO bitcode into liblua5.4.a, which the Rust (lld) link can't read,
|
# emit GCC LTO bitcode into liblua5.4.a, which the Rust (lld) link can't read,
|
||||||
# leaving all lua_* symbols undefined. Disable LTO for a clean static link.
|
# leaving all lua_* symbols undefined. Disable LTO for a clean static link.
|
||||||
options=(!lto)
|
options=(!lto !debug)
|
||||||
depends=('glibc' 'libgit2')
|
depends=('glibc' 'libgit2')
|
||||||
optdepends=(
|
optdepends=(
|
||||||
'libnotify: desktop notifications via bread.notify()'
|
'libnotify: desktop notifications via bread.notify()'
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue