我在安装Armadeus实验板APF27DEV的软件环境,试了下make
命令,报错如下:
On your system /bin/sh is a symbolic link that doesn't point to /bin/bash --> please correct that !
lrwxrwxrwx 1 root root 4 2013-08-03 20:57 /bin/sh -> dash
Run Code Online (Sandbox Code Playgroud)
为了解决此错误,我尝试将所有 shebangs 从 更改#!/bin/sh
为#!/bin/bash
,并且还尝试了以下命令行:
ln -s /bin/bash /bin/sh
Run Code Online (Sandbox Code Playgroud)
但是,我所做的一切都没有解决问题。任何人都可以帮我解决这个问题吗?