Skip to content
This repository has been archived by the owner on Jan 3, 2023. It is now read-only.

Commit

Permalink
Discard error from aclocal call (which seems to be needed on some Mac…
Browse files Browse the repository at this point in the history
… installations)

We do this aclocal call because it seems to be needed on some Mac
installations to enable autoreconf to run. But if the paths don't exist
we get an error. So just discard the error.
  • Loading branch information
funnelweb committed Oct 14, 2012
1 parent 6156d57 commit afdd236
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion autogen.sh
@@ -1,5 +1,5 @@
#!/usr/bin/env sh
which autoreconf > /dev/null || (echo "Please install autoconf" && exit 1)
# on OSX autoconf may need a little help with these paths
aclocal -I /opt/local/share/aclocal -I /usr/local/share/aclocal
aclocal -I /opt/local/share/aclocal -I /usr/local/share/aclocal 2> /dev/null
autoreconf && ./configure $@

0 comments on commit afdd236

Please sign in to comment.