Ariel Constenla-Haile <[email protected]> has asked for 4.1.4_release_blocker: Issue 127237: qadevOOo runner build breaks if ant not present https://bz.apache.org/ooo/show_bug.cgi?id=127237
--- Description --- The qadevOOo classes are built if java and ant are enabled: .IF "$(SOLAR_JAVA)"=="TRUE" .IF "$(ANT_HOME)"!="NO_ANT_HOME" ANT_FLAGS+=-Dbuild.source=1.5 .IF "$(L10N_framework)"=="" ALLTAR: ANTBUILD .ENDIF .ENDIF .ENDIF but qadevOOo/runner/makefile.mk only checks $(SOLAR_JAVA) and $(L10N_framework): # --- Targets ------------------------------------------------------ .IF "$(SOLAR_JAVA)"=="TRUE" && "$(L10N_framework)"=="" OWNJAR: ALLTAR Thus the build breaks: [ariel@localhost qadevOOo]$ echo $ANT_HOME NO_ANT_HOME [ariel@localhost qadevOOo]$ build build -- version: 275224 ============= Building module qadevOOo ============= Entering /home/ariel/aoo/build/openoffice-svn/trunk/main/qadevOOo mkout -- version: 1.8 Entering /home/ariel/aoo/build/openoffice-svn/trunk/main/qadevOOo/runner jar cfm ../unxlngx6.pro/class/OOoRunnerLight.jar manifest -C ../unxlngx6.pro/class util -C ../unxlngx6.pro/class share -C ../unxlngx6.pro/class stats -C ../unxlngx6.pro/class lib -C ../unxlngx6.pro/class complexlib -C ../unxlngx6.pro/class helper -C ../unxlngx6.pro/class basicrunner -C ../unxlngx6.pro/class base -C ../unxlngx6.pro/class org/openoffice -C ../unxlngx6.pro/class convwatch -C ../unxlngx6.pro/class graphical ../unxlngx6.pro/class/util : no such file or directory ../unxlngx6.pro/class/share : no such file or directory ../unxlngx6.pro/class/stats : no such file or directory ../unxlngx6.pro/class/lib : no such file or directory ../unxlngx6.pro/class/complexlib : no such file or directory ../unxlngx6.pro/class/helper : no such file or directory ../unxlngx6.pro/class/basicrunner : no such file or directory ../unxlngx6.pro/class/base : no such file or directory ../unxlngx6.pro/class/org/openoffice : no such file or directory ../unxlngx6.pro/class/convwatch : no such file or directory ../unxlngx6.pro/class/graphical : no such file or directory dmake: Error code 1, while making 'LIGHT' ERROR: error 65280 occurred while making /home/ariel/aoo/build/openoffice-svn/trunk/main/qadevOOo/runner
