Skip to content

Commit

Permalink
Suppress an error at bootstrap
Browse files Browse the repository at this point in the history
"type glibtoolize" will display an error message if glibtoolize is not
found (on non-Mac OS X systems):
./bootstrap: line 12: type: glibtoolize: not found

"which glibtoolize" will be quiet. So we use it instead.
  • Loading branch information
martinpaljak authored and LudovicRousseau committed May 2, 2015
1 parent c9d8a91 commit f18a27c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bootstrap
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ LIBTOOLIZE=libtoolize
# ==> Caveats
# In order to prevent conflicts with Apple's own libtool we have prepended a "g"
# so, you have instead: glibtool and glibtoolize.
type glibtoolize && LIBTOOLIZE=glibtoolize
which glibtoolize && LIBTOOLIZE=glibtoolize

aclocal -I m4
$LIBTOOLIZE --copy --force --automake
Expand Down

0 comments on commit f18a27c

Please sign in to comment.