From e56a07d95841f1076c3d70138698603c99a3efd2 Mon Sep 17 00:00:00 2001 From: Graham Percival Date: Tue, 13 Apr 2010 15:20:08 +0100 Subject: [PATCH] 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. --- make/website.make | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.39.5