aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b>2007-12-08 23:00:28 +0000
committerfiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b>2007-12-08 23:00:28 +0000
commitfa029799e610292125020df8f443e3da519f756f (patch)
tree9279acc95161a665f9adb3dbae1c1ac337fec6ef
parentaea6f6802b5c11e59063cc209b2b08ff9f58ee6f (diff)
downloadpandoc-fa029799e610292125020df8f443e3da519f756f.tar.gz
Makefile website target: create changelog.txt, not changelog.
This ensures that browsers will treat it as text. git-svn-id: https://pandoc.googlecode.com/svn/trunk@1142 788f1e2b-df1e-0410-8736-df70ead52e1b
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 63245feea..a42bd7a1e 100644
--- a/Makefile
+++ b/Makefile
@@ -328,7 +328,7 @@ make_page:=./$(MAIN) -s -S -B $(web_src)/header.html \
-A $(web_src)/footer.html \
-H $(web_src)/css
cleanup_files+=$(web_dest)
-$(web_dest) : html $(wildcard $(web_src)/*) changelog \
+$(web_dest) : html $(wildcard $(web_src)/*) debian/changelog \
INSTALL $(MANPAGES) $(MANDIR)/man1/pandoc.1.md README
rm -rf $(web_dest) && { \
mkdir $(web_dest); \
@@ -336,7 +336,7 @@ $(web_dest) : html $(wildcard $(web_src)/*) changelog \
cp $(web_src)/* $(web_dest)/; \
sed -e 's#@VERSION@#$(VERSION)#g' $(web_src)/index.txt.in > \
$(web_dest)/index.txt; \
- cp changelog $(web_dest)/ ; \
+ cp debian/changelog $(web_dest)/changelog.txt ; \
cp README $(web_dest)/ ; \
cp INSTALL $(web_dest)/ ; \
cp $(MANDIR)/man1/pandoc.1.md $(web_dest)/ ; \