aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThéophane Hufschmitt <theophane.hufschmitt@tweag.io>2022-08-08 14:34:22 +0200
committerThéophane Hufschmitt <theophane.hufschmitt@tweag.io>2022-08-08 14:34:22 +0200
commitf4a8426098481245e6fb1388de48366c5c82991f (patch)
tree307e420f39851e21b4b32d97a329444a6e3a6fa5
parentd1cda07ce47064bda2c609a0290c867295ddd0a8 (diff)
Remove the explicit `c++fs` linkage on darwin
Doesn't seem needed on a recent-enough clang anymore (and even seems to break stuff)
-rw-r--r--src/libutil/local.mk4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/libutil/local.mk b/src/libutil/local.mk
index 13e8d426a..f880c0fc5 100644
--- a/src/libutil/local.mk
+++ b/src/libutil/local.mk
@@ -11,7 +11,3 @@ libutil_LDFLAGS += -pthread $(OPENSSL_LIBS) $(LIBBROTLI_LIBS) $(LIBARCHIVE_LIBS)
ifeq ($(HAVE_LIBCPUID), 1)
libutil_LDFLAGS += -lcpuid
endif
-
-ifdef HOST_DARWIN
- libutil_LDFLAGS += -lc++fs
-endif