diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2020-03-31 10:13:24 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2020-03-31 10:13:24 +0000 |
commit | 3c45858fc0cfd8279621c802ab169461e9d8ecbc (patch) | |
tree | 9d38fabeff93919e53c493879116a36c5236a3c5 | |
parent | f9e2f9647688aa09980972fc3ba7e9b2dc914195 (diff) | |
download | abuild-3c45858fc0cfd8279621c802ab169461e9d8ecbc.tar.bz2 abuild-3c45858fc0cfd8279621c802ab169461e9d8ecbc.tar.xz |
abuild: fix check_libc
fixes commit 012a179339ccf91adaa8b9f572d2b885f8fd4eab
-rw-r--r-- | abuild.in | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2057,7 +2057,7 @@ check_arch() { # return true if libc is not masked in options check_libc() { - ! option_has "!libc_$CLIBC" + ! options_has "!libc_$CLIBC" } # check if package is up to date |