Skip to content

Commit

Permalink
Oops, forgot the important bit.
Browse files Browse the repository at this point in the history
  • Loading branch information
carlosefr committed Mar 14, 2015
1 parent 2106e24 commit 11c5d7b
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion kyotocabinet/configure
Original file line number Diff line number Diff line change
Expand Up @@ -4530,7 +4530,7 @@ fi
if test "$is_static" = "yes"
then
printf "checking whether $CC accepts -static... "
if printf 'int main() { return 0; }' | $CC -xc -o config.tmp - >/dev/null 2>&1
if printf 'int main() { return 0; }' | $CC -xc -o config.tmp -static ->/dev/null 2>&1
then
MYCMDLDFLAGS="$MYCMDLDFLAGS -static"
MYCMDLIBS="$MYCMDLIBS $LIBS"
Expand Down
2 changes: 1 addition & 1 deletion kyotocabinet/configure.in
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,7 @@ fi
if test "$is_static" = "yes"
then
printf "checking whether $CC accepts -static... "
if printf 'int main() { return 0; }' | $CC -xc -o config.tmp - >/dev/null 2>&1
if printf 'int main() { return 0; }' | $CC -xc -o config.tmp -static ->/dev/null 2>&1
then
MYCMDLDFLAGS="$MYCMDLDFLAGS -static"
MYCMDLIBS="$MYCMDLIBS $LIBS"
Expand Down
2 changes: 1 addition & 1 deletion kyototycoon/configure
Original file line number Diff line number Diff line change
Expand Up @@ -4550,7 +4550,7 @@ fi
if test "$is_static" = "yes"
then
printf "checking whether $CC accepts -static... "
if printf 'int main() { return 0; }' | $CC -xc -o config.tmp - >/dev/null 2>&1
if printf 'int main() { return 0; }' | $CC -xc -o config.tmp -static - >/dev/null 2>&1
then
MYCMDLDFLAGS="$MYCMDLDFLAGS -static"
MYCMDLIBS="$MYCMDLIBS $LIBS"
Expand Down
2 changes: 1 addition & 1 deletion kyototycoon/configure.in
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,7 @@ fi
if test "$is_static" = "yes"
then
printf "checking whether $CC accepts -static... "
if printf 'int main() { return 0; }' | $CC -xc -o config.tmp - >/dev/null 2>&1
if printf 'int main() { return 0; }' | $CC -xc -o config.tmp -static - >/dev/null 2>&1
then
MYCMDLDFLAGS="$MYCMDLDFLAGS -static"
MYCMDLIBS="$MYCMDLIBS $LIBS"
Expand Down

0 comments on commit 11c5d7b

Please sign in to comment.