Skip to content

Commit

Permalink
Test the 64 bits Windows version instead of the 32 bits one
Browse files Browse the repository at this point in the history
  • Loading branch information
amadvance committed Oct 10, 2023
1 parent db6c01e commit d1d79d8
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -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])

Expand Down
12 changes: 6 additions & 6 deletions makedist.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down

0 comments on commit d1d79d8

Please sign in to comment.