lol

libxcrypt: Fix the build on Android by allowing warnings

This fixes:

```
lib/util-xbzero.c:61:3: error: extension used [-Werror,-Wlanguage-extension-token]
OBSERVE_MEM (s, len);
^
lib/util-xbzero.c:45:3: note: expanded from macro 'OBSERVE_MEM'
asm volatile ("" : : "m" (*(const char (*)[len]) s))
^
```

+1 -1
+1 -1
pkgs/development/libraries/libxcrypt/default.nix
··· 18 18 "--enable-hashes=all" 19 19 "--enable-obsolete-api=glibc" 20 20 "--disable-failure-tokens" 21 - ] ++ lib.optionals stdenv.hostPlatform.isMusl [ 21 + ] ++ lib.optionals (stdenv.hostPlatform.isMusl || stdenv.hostPlatform.libc == "bionic") [ 22 22 "--disable-werror" 23 23 ]; 24 24