mirror of
https://github.com/void-linux/void-packages.git
synced 2025-06-14 19:13:51 +02:00
gcc: fix inverted test for the bootstrap case (close #1563).
This commit is contained in:
parent
d75edf4a21
commit
096b619e1b
1 changed files with 1 additions and 1 deletions
|
@ -30,7 +30,7 @@ if [ -z "$CROSS_BUILD" ]; then
|
|||
subpackages+=" libobjc-devel libobjc"
|
||||
fi
|
||||
|
||||
if [ -z "$CHROOT_READY" ]; then
|
||||
if [ -n "$CHROOT_READY" ]; then
|
||||
case "$XBPS_TARGET_MACHINE" in
|
||||
*-musl)
|
||||
# XXX disable go and java with musl
|
||||
|
|
Loading…
Add table
Reference in a new issue