summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2022-10-11 15:08:50 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2022-10-18 16:57:47 +0300
commitc19d14f1de84744632af6dae64e9fccf69cc3a7c (patch)
tree9332f45757f62691c2ffc10efd1c8dcf5ae6ecc1
parent12446ffc4729e1aff5e24628dd485c38e5dc2533 (diff)
Switch to using -pthread instead of -lpthread in buildfiles
-rw-r--r--libxerces-c/xercesc/buildfile4
1 files changed, 2 insertions, 2 deletions
diff --git a/libxerces-c/xercesc/buildfile b/libxerces-c/xercesc/buildfile
index b3cb923..1043c51 100644
--- a/libxerces-c/xercesc/buildfile
+++ b/libxerces-c/xercesc/buildfile
@@ -117,11 +117,11 @@ switch $tclass, $tsys
#
cxx.loptions += -Wl,--no-undefined
- cxx.libs += -lm -lpthread
+ cxx.libs += -lm -pthread
}
default
{
- cxx.libs += -lpthread
+ cxx.libs += -pthread
}
}