Skip to content

Commit

Permalink
Fixed 'equals' operator. In shell scripts it's '=', not '=='.
Browse files Browse the repository at this point in the history
  • Loading branch information
Jonas Petersen committed Jul 30, 2014
1 parent 05a17c2 commit a6e6f07
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion autogen.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/sh

if test -z "$LIBTOOLIZE"; then
if test "$(uname)" == "Darwin"; then
if test "$(uname)" = "Darwin"; then
LIBTOOLIZE="glibtoolize"
else
LIBTOOLIZE="libtoolize"
Expand Down

0 comments on commit a6e6f07

Please sign in to comment.