diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2024-04-15 11:54:39 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2024-04-15 11:54:39 -0400 |
commit | a28b04cfbce8948cb1b216da065a229009a99f01 (patch) | |
tree | b2a90190f78c96a31bf28a07084211451da33982 /Makefile | |
parent | 12ce2b2e8547477fe5b544b2be823bc5365507d9 (diff) | |
download | bfs-a28b04cfbce8948cb1b216da065a229009a99f01.tar.xz |
build: Remove unneeded USE_* defaults
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 11 |
1 files changed, 1 insertions, 10 deletions
@@ -138,15 +138,6 @@ export LINT_CFLAGS= -Werror -O2 export RELEASE_CPPFLAGS= -DNDEBUG export RELEASE_CFLAGS= -O3 -flto=auto -# Auto-detected library dependencies. Can be set manually with -# -# $ make config USE_LIBURING=n USE_ONIGURUMA=y -USE_LIBACL ?= -USE_LIBCAP ?= -USE_LIBSELINUX ?= -USE_LIBURING ?= -USE_ONIGURUMA ?= - # Save the new value of these variables, before they potentially get overridden # by `-include ${CONFIG}` below @@ -447,7 +438,7 @@ distcheck: ${DISTCHECKS} DISTCHECK_CONFIG_asan := ASAN=y UBSAN=y DISTCHECK_CONFIG_msan := MSAN=y UBSAN=y CC=clang DISTCHECK_CONFIG_tsan := TSAN=y UBSAN=y CC=clang -DISTCHECK_CONFIG_m32 := EXTRA_CFLAGS="-m32" PKG_CONFIG_LIBDIR=/usr/lib32/pkgconfig USE_LIBURING=n +DISTCHECK_CONFIG_m32 := EXTRA_CFLAGS="-m32" PKG_CONFIG_LIBDIR=/usr/lib32/pkgconfig DISTCHECK_CONFIG_release := RELEASE=y ${DISTCHECKS}:: |