From: Graham Percival Date: Tue, 13 Apr 2010 14:20:08 +0000 (+0100) Subject: Web build: don't link recursively. X-Git-Tag: release/2.13.18-1~15^2~1 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=e56a07d95841f1076c3d70138698603c99a3efd2;p=lilypond.git Web build: don't link recursively. The build process was finding all .html files, including files from a previous run, and putting them in a /website/ dir. When it found files like /website/*.html, they would become /website/website/*.html, etc. --- diff --git a/make/website.make b/make/website.make index fbcdc0d81f..a5c109a11b 100644 --- a/make/website.make +++ b/make/website.make @@ -99,7 +99,7 @@ website-texinfo: website-version website-xrefs -D web_version \ --output=$(OUT)/"$$l" \ $(top-src-dir)/Documentation/"$$l"/web.texi ; \ - find $(OUT)/$$l/ -name '*.html' | xargs grep -L 'UNTRANSLATED NODE: IGNORE ME' | sed 's!$(OUT)/'$$l'/!!g' | xargs $(MASS_LINK) --prepend-suffix="$$langsuf" hard $(OUT)/$$l/ $(OUT)/website/ ; \ + ls $(OUT)/$$l/*.html | xargs grep -L 'UNTRANSLATED NODE: IGNORE ME' | sed 's!$(OUT)/'$$l'/!!g' | xargs $(MASS_LINK) --prepend-suffix="$$langsuf" hard $(OUT)/$$l/ $(OUT)/website/ ; \ done