Skip to content

Commit

Permalink
fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
mirostauder committed Nov 23, 2023
1 parent 42ad092 commit 7c8db3f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ DEBUG := ${ALL_DEBUG}
#export DEBUG
#export EXTRALINK
export MAKE
export CURVER ?= 2.6.0
export CURVER=${CURVER:-2.6.0}

### detect compiler support for c++11/17
CPLUSPLUS := $(shell ${CC} -std=c++17 -dM -E -x c++ /dev/null 2>/dev/null | grep -F __cplusplus | grep -Po '\d\d\d\d\d\dL')
Expand All @@ -65,7 +65,7 @@ endif
ifeq ($(OS),Darwin)
NPROCS := $(shell sysctl -n hw.ncpu)
endif
export MAKEOPT = -j ${NPROCS}
export MAKEOPT="-j ${NPROCS}"

### systemd
SYSTEMD := 0
Expand Down
4 changes: 2 additions & 2 deletions src/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ STDCPP := -std=c++$(shell echo $(CPLUSPLUS) | cut -c3-4) -DCXX$(shell echo $(CPL

PSQLCH :=
ifeq ($(PROXYSQLCLICKHOUSE),1)
PSQLCH=-DPROXYSQLCLICKHOUSE
PSQLCH := -DPROXYSQLCLICKHOUSE
endif

WGCOV :=
Expand All @@ -129,7 +129,7 @@ WASAN :=
ifeq ($(WITHASAN),1)
WASAN := -WITHASAN -fsanitize=address
# Force the disable of JEMALLOC, since ASAN isn't compatible.
export NOJEMALLOC = 1
export NOJEMALLOC=1
endif
ifeq ($(TEST_WITHASAN),1)
WASAN += -DTEST_WITHASAN
Expand Down

0 comments on commit 7c8db3f

Please sign in to comment.