From: Andre P. <at...@us...> - 2005-03-31 15:58:21
|
Update of /cvsroot/hoc/hoc/HOC In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2299 Modified Files: Makefile.in Log Message: Don't overwrite inplace.conf if it already exists Index: Makefile.in =================================================================== RCS file: /cvsroot/hoc/hoc/HOC/Makefile.in,v retrieving revision 1.8 retrieving revision 1.9 diff -u -d -r1.8 -r1.9 --- Makefile.in 31 Mar 2005 15:30:18 -0000 1.8 +++ Makefile.in 31 Mar 2005 15:58:12 -0000 1.9 @@ -14,7 +14,7 @@ all: libHOC.a HOC.o ../inplace.conf ../inplace.conf: HOC-$(PLATFORM).conf-inplace - echo "[]" > $@ + [ -f "$@" ] || echo '[]' > $@ $(GHC_PKG) register HOC-$(PLATFORM).conf-inplace \ --package-conf=../inplace.conf |