# HG changeset patch # User haftmann # Date 1117975283 -7200 # Node ID 3a50bf1f04d0d0aa479b5ab174099c19eab29939 # Parent 951803bff5b1a6831c62ed936d9b67ebbd6854ae a more spohisticated symlink handling diff -r 951803bff5b1 -r 3a50bf1f04d0 Admin/website/build/main.mak --- a/Admin/website/build/main.mak Sun Jun 05 14:33:02 2005 +0200 +++ b/Admin/website/build/main.mak Sun Jun 05 14:41:23 2005 +0200 @@ -81,7 +81,7 @@ allstatic=''; \ for dir in $(STATICDIRS); \ do \ - for file in `$(FIND) -L $$dir -type f -a ! -path "*/CVS/*"`; \ + for file in `$(FIND) $$dir -follow -type f -a ! -path "*/CVS/*"`; \ do \ outputfile=$(OUTPUTROOT)/$$file; \ outputdir=`dirname $$outputfile`; \ @@ -97,7 +97,7 @@ echo 'DEP_HTML=$$(DEP_ALLSTATIC) $$(DEP_SYMLINKS) include/documentationdist.include.html $(DEP_FILE) $(CONF)' >> $(DEP_FILE); \ echo >> $(DEP_FILE); \ allhtml=''; \ - for html in `$(FIND) -P . -name "*.html" -a ! -name "*.include.html"`; \ + for html in `$(FIND) . -name "*.html" -a ! -name "*.include.html"`; \ do \ outputfile=$(OUTPUTROOT)/$$html; \ outputdir=`dirname $$outputfile`; \