Skip to content

Commit

Permalink
[autogen.sh:] Reduce in-script comment block width to 80 characters.
Browse files Browse the repository at this point in the history
This is with respect to the comment preceding the `libtoolize`/`glibtoolize` existence check I introduced.
  • Loading branch information
RandomDSdevel committed Mar 9, 2017
1 parent da4f7fd commit e08ed04
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions autogen.sh
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,10 @@ if [ "$1" = "clean" ]; then
find . -iname "Makefile.in" -type f -exec rm '{}' +
fi

# Prevent any errors that might result from failing to properly invoke `libtoolize` or `glibtoolize,` whichever
# is present on your system, from occurring by testing for its existence and capturing the absolute path to its
# location for caching purposes prior to using it later on in 'Step 2:'
# Prevent any errors that might result from failing to properly invoke
# `libtoolize` or `glibtoolize,` whichever is present on your system,
# from occurring by testing for its existence and capturing the absolute path to
# its location for caching purposes prior to using it later on in 'Step 2:'
if command -v libtoolize >/dev/null 2>&1; then
LIBTOOLIZE="$(command -v libtoolize)"
elif command -v glibtoolize >/dev/null 2>&1; then
Expand Down

0 comments on commit e08ed04

Please sign in to comment.