diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2024-04-17 10:09:38 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2024-04-17 10:09:38 -0400 |
commit | 83bfed52e523ef942da82a083584a4548182aaa4 (patch) | |
tree | 8671ae2ad724c0854bb1d53d46e7c03c614bb359 /config | |
parent | c4c063e9844f2bd2271b2e3391f59f872c66f69a (diff) | |
download | bfs-83bfed52e523ef942da82a083584a4548182aaa4.tar.xz |
build: Support NOLIBS=1
Diffstat (limited to 'config')
-rwxr-xr-x | config/pkgconf.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config/pkgconf.sh b/config/pkgconf.sh index 80dcbee..361852e 100755 --- a/config/pkgconf.sh +++ b/config/pkgconf.sh @@ -17,7 +17,7 @@ if (($# < 1)); then exit fi -if [[ "$XNOLIBS" == *y* ]]; then +if [[ "$XNOLIBS" == [y1] ]]; then exit 1 fi |