forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
dev-games/wfmath: commit bashisms patch
Fixes: f774713 Signed-off-by: Sam James <[email protected]>
- Loading branch information
1 parent
25a7998
commit 65cf4da
Showing
1 changed file
with
16 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
--- a/configure.ac | ||
+++ b/configure.ac | ||
@@ -81,11 +81,11 @@ PKG_CHECK_MODULES(ATLAS_0_6, atlascpp-0.6 >= 0.6.0, | ||
dnl those should already be using Atlas explicitly. | ||
], found_atlas_0_6=no) | ||
|
||
-AM_CONDITIONAL(HAVE_ATLAS_0_6, test $found_atlas_0_6 == yes) | ||
+AM_CONDITIONAL(HAVE_ATLAS_0_6, test $found_atlas_0_6 = xyes) | ||
|
||
AC_CHECK_HEADERS(sstream strstream, [ found_string_stream=yes break ], | ||
[ found_string_stream=no ]) | ||
-if test $found_string_stream == no ; then | ||
+if test $found_string_stream = xno ; then | ||
AC_MSG_ERROR(Couldn't find C++ string <-> stream conversion method.) | ||
fi | ||
|