From cd9351c0424d569b7883818813de6109e6318ee3 Mon Sep 17 00:00:00 2001 From: Steffen Vogel Date: Sat, 6 Jun 2020 23:18:04 +0200 Subject: [PATCH] fix installation of nanomsg --- packaging/deps.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/packaging/deps.sh b/packaging/deps.sh index 2d54488d2..c7763930b 100644 --- a/packaging/deps.sh +++ b/packaging/deps.sh @@ -153,7 +153,8 @@ fi # Build & Install nanomsg if ! pkg-config "nanomsg >= 1.0.0"; then git clone https://github.com/nanomsg/nanomsg.git - pushd nanomsg + mkdir -p nanomsg/build + pushd nanomsg/build cmake -DCMAKE_INSTALL_LIBDIR=/usr/local/lib64 .. if [ -z "${PACKAGE}" ]; then make -j$(nproc) install