Skip to content
This repository was archived by the owner on Feb 29, 2024. It is now read-only.

Commit b18ab8c

Browse files
committed
Fix makefile: use ifneq instead of ifndef
------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=151622898
1 parent 1bea738 commit b18ab8c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/agent/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ LIBS= \
169169
$(THIRD_PARTY_LIB_PATH)/libgflags.a \
170170
$(THIRD_PARTY_LIB_PATH)/libglog.a \
171171

172-
ifndef ($(OS),Darwin)
172+
ifneq ($(OS),Darwin)
173173
# Pass these flags only when building with gcc (i.e., not clang).
174174
LIBS += \
175175
-pthread \

0 commit comments

Comments
 (0)