summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdrian Johnson <ajohnson@redneon.com>2014-10-21 22:35:12 +1030
committerAdrian Johnson <ajohnson@redneon.com>2014-10-21 22:42:34 +1030
commitf9b65ae1fc91bc558a01c2ad7be5a121c6f10818 (patch)
treefa6e500879d87b47530a0bcf752b74d19baf93f0
parent2de69581c28bf115852037ca41eba13cb7335976 (diff)
build: fix regression on mingw
7cfebce1 removed the filename extension for executables. Patch from http://sourceforge.net/p/inkscape/mailman/message/32939144/ Bug 85120
-rw-r--r--build/aclocal.float.m44
1 files changed, 2 insertions, 2 deletions
diff --git a/build/aclocal.float.m4 b/build/aclocal.float.m4
index bc0a91c60..8f85f0862 100644
--- a/build/aclocal.float.m4
+++ b/build/aclocal.float.m4
@@ -31,10 +31,10 @@ int main() { return 0; }
]])], [
-if strings - conftest | grep noonsees >/dev/null ; then
+if strings - conftest$ac_exeext | grep noonsees >/dev/null ; then
ax_cv_c_float_words_bigendian=yes
fi
-if strings - conftest | grep seesnoon >/dev/null ; then
+if strings - conftest$ac_exeext | grep seesnoon >/dev/null ; then
if test "$ax_cv_c_float_words_bigendian" = unknown; then
ax_cv_c_float_words_bigendian=no
else