How to point autoconf/automake to non-standard packages

前端 未结 4 1686
南笙
南笙 2021-02-06 08:35

I\'m trying to build ZooKeeper on a RedHat Linux box. (Exactly what ZooKeeper is is probably not important :-)

When I follow the package instructions, I get:

<         


        
4条回答
  •  旧时难觅i
    2021-02-06 08:56

    You want to set the environment variable ACLOCAL_PATH.

    ACLOCAL_PATH="/home/YOU/path/to/share/aclocal" autoreconf -if
    

    To figure out what directory you need to point ACLOCAL_PATH at, you'll have to find the directory that contains the .m4 file that defines AM_PATH_CPPUNIT.

提交回复
热议问题