Skip to content
Advertisement

possible missing library when running cmake

I am trying to install a program on my machine (running Linux), but I get the following error when I run make:

JavaScript

What is wrong, am I missing a library?

Advertisement

Answer

The problem is that the Makefile uses bash specific syntax (|&) but the commands are executed by /bin/sh, which does not point to /bin/bash.

On my computer (Ubuntu 14.04):

JavaScript

A solution could be to let the symbolic link /bin/sh point to /bin/bash:

JavaScript
User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement