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
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.
Most helpful comment
Darn. This is a total hack, but if you have
/usr/local/bin/glibtoolizeinstalled (which you should, since you didbrew install libtool), then you can just symlink it:sudo ln -s /usr/local/bin/glibtoolize /usr/local/bin/libtoolize.