Build: Fix "make check" on Windows.

This commit is contained in:
Lasse Collin 2011-09-06 12:03:41 +03:00
parent 5c5b225696
commit bd52cf150e
2 changed files with 7 additions and 2 deletions

View File

@ -43,8 +43,11 @@ TESTS = \
test_block_header \
test_index \
test_files.sh \
test_compress.sh \
test_scripts.sh
test_compress.sh
if COND_SCRIPTS
TESTS += test_scripts.sh
endif
clean-local:
-rm -f compress_generated_*

View File

@ -77,6 +77,7 @@ buildit()
./configure \
--prefix= \
--disable-nls \
--disable-scripts \
--disable-threads \
--disable-shared \
--enable-small \
@ -97,6 +98,7 @@ buildit()
./configure \
--prefix= \
--disable-nls \
--disable-scripts \
--disable-threads \
--build="$BUILD" \
CFLAGS="$CFLAGS -O2"