From 4289dbc9dd12e33dd4e47cf05f899a0642eef793 Mon Sep 17 00:00:00 2001 From: Robert Greene Date: Thu, 27 Mar 2003 05:34:13 +0000 Subject: [PATCH] Updated build script to ignore clases that break the build or do not apply to the build. The JUnit tests along with ImageIoImage and SunJpegImage are examples. --- build/build-applecommander-mingw | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/build/build-applecommander-mingw b/build/build-applecommander-mingw index 87e404d..cb3d293 100644 --- a/build/build-applecommander-mingw +++ b/build/build-applecommander-mingw @@ -1,6 +1,11 @@ #!/bin/sh -APPLECOMMANDER_FILES=$(cd com; find . -name "*.java" -print | sed 's#^\./#com/#') +exec >$0.log 2>&1 + +APPLECOMMANDER_FILES=$(cd com; \ + find . -name "*.java" -not -name "*Test.java" -not -name "ImageIoImage.java" \ + -not -name "SunJpegImage.java" -print | + sed 's#^\./#com/#') OPTS="-static -O3 --no-bounds-checking -funroll-loops -finline-functions \ -fkeep-inline-functions -malign-double"