Skip to content

Commit

Permalink
autogen.sh: Only call autoreconf to generate build system files
Browse files Browse the repository at this point in the history
autoreconf calls libtoolize and other autotools commands as needed
to generate and install build system files, as described in the man
page. The documentation cautions against using aclocal as it may be
removed in the future; it recommends simply calling autoreconf in
place of calling individual commands to remain forwards compatible:

https://www.gnu.org/software/automake/manual/html_node/Future-of-aclocal.html

Signed-off-by: David Ward <david.ward@ll.mit.edu>
  • Loading branch information
dpward committed Jul 9, 2016
1 parent fe1692b commit ec89ef5
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions autogen.sh
Original file line number Diff line number Diff line change
Expand Up @@ -79,11 +79,5 @@ then
find . -name 'Makefile.in' -delete

else
libtoolize --force --copy

aclocal --force

automake --add-missing --copy

autoreconf --force
autoreconf --force --install
fi

0 comments on commit ec89ef5

Please sign in to comment.