Skip to content

Commit e08ed04

Browse files
committed
[autogen.sh:] Reduce in-script comment block width to 80 characters.
This is with respect to the comment preceding the `libtoolize`/`glibtoolize` existence check I introduced.
1 parent da4f7fd commit e08ed04

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

autogen.sh

+4-3
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,10 @@ if [ "$1" = "clean" ]; then
4646
find . -iname "Makefile.in" -type f -exec rm '{}' +
4747
fi
4848

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

0 commit comments

Comments
 (0)