diff options
| author | Wil Bown <[email protected]> | 2014-02-26 12:39:57 -0700 |
|---|---|---|
| committer | Wil Bown <[email protected]> | 2014-02-26 12:39:57 -0700 |
| commit | 5d5b0d284a787fc9a3c53c59232ebc2c09dffaeb (patch) | |
| tree | f425aa53d88dce09c81c50b9517f697cd2088878 /src | |
| parent | Merge pull request #3737 from jgarzik/op-return-size (diff) | |
| download | discoin-5d5b0d284a787fc9a3c53c59232ebc2c09dffaeb.tar.xz discoin-5d5b0d284a787fc9a3c53c59232ebc2c09dffaeb.zip | |
Add shell null to else block
MinGW-W64-builds-4.2.0 shell doesn't like the empty else blocks.
Diffstat (limited to 'src')
| -rw-r--r-- | src/m4/ax_boost_base.m4 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/m4/ax_boost_base.m4 b/src/m4/ax_boost_base.m4 index c675f12d8..f941b27ec 100644 --- a/src/m4/ax_boost_base.m4 +++ b/src/m4/ax_boost_base.m4 @@ -155,7 +155,7 @@ if test "x$want_boost" = "xyes"; then AC_MSG_RESULT(yes) succeeded=yes found_system=yes - ],[ + ],[: ]) AC_LANG_POP([C++]) @@ -238,7 +238,7 @@ if test "x$want_boost" = "xyes"; then AC_MSG_RESULT(yes) succeeded=yes found_system=yes - ],[ + ],[: ]) AC_LANG_POP([C++]) fi |