From bde1c6801814228dc059e191176386f69e833275 Mon Sep 17 00:00:00 2001 From: Amar Takhar Date: Tue, 2 Jun 2009 01:56:29 +0000 Subject: [PATCH] Fix FreeBSD dist building under buildbot. Originally committed to SVN as r3002. --- aegisub/tinderbox/unix/dist.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/aegisub/tinderbox/unix/dist.sh b/aegisub/tinderbox/unix/dist.sh index c451e7cab..188bacbe7 100755 --- a/aegisub/tinderbox/unix/dist.sh +++ b/aegisub/tinderbox/unix/dist.sh @@ -9,11 +9,12 @@ fi # On FreeBSD "make" is PMake, so we need to use 'gmake' if test `uname -s` = "FreeBSD"; then BIN_MAKE="gmake" + CONFIGURE_ARGS="--with-wx-config=/usr/local/bin/wxgtk2u-2.8-config" else BIN_MAKE="make" fi -./autogen.sh || exit $? +./autogen.sh ${CONFIGURE_ARGS} || exit $? ${BIN_MAKE} distdir distdir="${DIST_NAME}" || exit $?