Check framework example giving me error when running './configure'

孤街浪徒 提交于 2019-12-04 09:15:43

I was able to figure out what was causing the errors - it was due to automake and libtools which I installed using brew install. Despite already installing autoconf which installed all the necessary tools I needed.

In addition, I looked at the configure script that autoconf created and I found that the variables wasn't being set-up properly which is why it was giving me the install-sh error because the $ac_dir wasn't assigned.

Here is what I did.

I uninstalled libtools and automake -

brew uninstall libtool automake
autoreconf -i
./configure

It ran with out any errors. I still don't know the reason why installing those 2 packages messed in building the project.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!