diff --git a/configure.ac b/configure.ac index 82b6873..15ce57c 100644 --- a/configure.ac +++ b/configure.ac @@ -19,7 +19,7 @@ AC_CHECK_PROGS(GZIP, gzip) AC_CHECK_PROGS(GROFF, groff) AC_CHECK_PROGS(COL, col) AC_CHECK_PROG([VALGRIND],[valgrind],[valgrind --leak-check=full --track-fds=yes --error-exitcode=1],[]) -AC_CHECK_PROG([WINE],[wine],[wine],[]) +AC_CHECK_PROG([WINE],[wine64],[wine64],[]) AC_CHECK_PROG([ADVD2],[advd2],[advd2],[]) AM_CONDITIONAL(HAVE_ADVD2, [test x"$ADVD2" != x]) diff --git a/makedist.sh b/makedist.sh index 8dcf4cd..c54a499 100755 --- a/makedist.sh +++ b/makedist.sh @@ -10,12 +10,6 @@ if ! ./configure.windows-x86; then exit 1 fi -if ! test "x$1" = "x-f"; then - if ! make check; then - exit 1 - fi -fi - if ! make distwindows-x86 distclean; then exit 1 fi @@ -24,6 +18,12 @@ if ! ./configure.windows-x64; then exit 1 fi +if ! test "x$1" = "x-f"; then + if ! make check; then + exit 1 + fi +fi + if ! make distwindows-x64 distclean; then exit 1 fi