Redex: Can't exec "libtoolize": No such file or directory at /usr/local/share/autoconf/Autom4te/FileUtils.pm line 345, <GEN7> line 5.

Created on 13 Apr 2016  路  3Comments  路  Source: facebook/redex

I keep getting Can't exec "libtoolize": No such file or directory at /usr/local/share/autoconf/Autom4te/FileUtils.pm line 345, <GEN7> line 5.. I'm running this on OSX 10.10.5.

Prerequisite

brew install autoconf automake libtool
brew install boost double-conversion gflags glog libevent

git clone https://github.com/facebook/redex.git && cd redex
git submodule update --init

Make

autoreconf -ivf && ./configure && make && make install

#=>autoreconf: Entering directory `.'
autoreconf: configure.ac: not using Gettext
autoreconf: running: aclocal --force
autoreconf: configure.ac: tracing
autoreconf: configure.ac: adding subdirectory third-party/folly/folly to autoreconf
autoreconf: Entering directory `third-party/folly/folly'
autoreconf: running: aclocal --force -I m4
autoreconf: running: libtoolize --copy --force
Can't exec "libtoolize": No such file or directory at /usr/local/share/autoconf/Autom4te/FileUtils.pm line 345, <GEN7> line 5.
autoreconf: failed to run libtoolize: No such file or directory
autoreconf: libtoolize is needed because this package uses Libtool

Most helpful comment

Darn. This is a total hack, but if you have /usr/local/bin/glibtoolize installed (which you should, since you did brew install libtool), then you can just symlink it: sudo ln -s /usr/local/bin/glibtoolize /usr/local/bin/libtoolize.

All 3 comments

I pushed an update this morning that _might_ fix this, can you give it another go?

@bertmaher unfortunately I'm still getting the same result

Darn. This is a total hack, but if you have /usr/local/bin/glibtoolize installed (which you should, since you did brew install libtool), then you can just symlink it: sudo ln -s /usr/local/bin/glibtoolize /usr/local/bin/libtoolize.

Was this page helpful?
0 / 5 - 0 ratings

Related issues

erdemolkun picture erdemolkun  路  5Comments

developerzhu picture developerzhu  路  7Comments

gydeveloper picture gydeveloper  路  5Comments

stephanenicolas picture stephanenicolas  路  9Comments

ijustyce picture ijustyce  路  8Comments