Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Problem: built with out of date zproject
Solution: rebuild correctly.
  • Loading branch information
hintjens committed Feb 14, 2015
1 parent dfa1ad3 commit ff1a30d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions Makefile.am
Expand Up @@ -30,6 +30,7 @@ EXTRA_DIST = \
version.sh

include $(srcdir)/src/Makemodule.am
include $(srcdir)/src/Makemodule-local.am # Optional project-local hook

################################################################################
# THIS FILE IS 100% GENERATED BY ZPROJECT; DO NOT EDIT EXCEPT EXPERIMENTALLY #
Expand Down
5 changes: 3 additions & 2 deletions autogen.sh
Expand Up @@ -31,8 +31,9 @@ if [ $? -ne 0 ]; then
fi

autoreconf --install --force --verbose -I config
if [ $? -ne 0 ]; then
echo "autogen.sh: error: autoreconf exited with status $?" 1>&2
status=$?
if [ $status -ne 0 ]; then
echo "autogen.sh: error: autoreconf exited with status $status" 1>&2
exit 1
fi

Expand Down

0 comments on commit ff1a30d

Please sign in to comment.