Update of /cvsroot/nice/Nice
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29658
Modified Files:
Makefile
Log Message:
Properly report problems with finding Ant in the classpath and ignore the error
now that we also build Nice sources using Ant.
Index: Makefile
===================================================================
RCS file: /cvsroot/nice/Nice/Makefile,v
retrieving revision 1.142
retrieving revision 1.143
diff -C2 -d -r1.142 -r1.143
*** Makefile 4 Mar 2004 10:45:45 -0000 1.142
--- Makefile 8 Mar 2004 14:40:38 -0000 1.143
***************
*** 191,196 ****
ant:
@echo "Building the Ant task definition..."
! $(NICEC1) --classpath "${ANT_CLASSPATH}" nice.tools.ant
! @${javac} -sourcepath src -classpath "${ANT_CLASSPATH}:./classes:./classes.old" -d classes src/nice/tools/ant/*.java ||\
echo -e "Compilation of the Ant task definition failed.\n NICE_ANTJAR or ANT_HOME should be set, Ant should be in the CLASSPATH or at least linked to by ./external/ant.jar"
--- 191,196 ----
ant:
@echo "Building the Ant task definition..."
! @$(NICEC1) --classpath "${ANT_CLASSPATH}" nice.tools.ant &&\
! ${javac} -sourcepath src -classpath "${ANT_CLASSPATH}:./classes:./classes.old" -d classes src/nice/tools/ant/*.java ||\
echo -e "Compilation of the Ant task definition failed.\n NICE_ANTJAR or ANT_HOME should be set, Ant should be in the CLASSPATH or at least linked to by ./external/ant.jar"
|