[Nice-commit] Nice/regtest/basic Makefile,1.1,1.2
Brought to you by:
bonniot
From: Daniel B. <bo...@us...> - 2006-01-13 17:47:58
|
Update of /cvsroot/nice/Nice/regtest/basic In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25456/regtest/basic Modified Files: Makefile Log Message: Use inherited $(javac) if it exists, to prevent version mismatch problems with the default javac command. Index: Makefile =================================================================== RCS file: /cvsroot/nice/Nice/regtest/basic/Makefile,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** Makefile 27 Dec 2001 10:56:44 -0000 1.1 --- Makefile 13 Jan 2006 17:47:49 -0000 1.2 *************** *** 1,3 **** Nop.class Fields.class: Nop.java Fields.java CLASSPATH=${NICE_TOP}/classes:${CLASSPATH}; export CLASSPATH; \ ! javac Nop.java Fields.java --- 1,5 ---- + javac = javac + Nop.class Fields.class: Nop.java Fields.java CLASSPATH=${NICE_TOP}/classes:${CLASSPATH}; export CLASSPATH; \ ! $(javac) Nop.java Fields.java |