From: Karl Hasselström Date: Sun, 5 Oct 2008 15:33:41 +0000 (+0200) Subject: Remove unused variable X-Git-Tag: v0.15-rc1~121 X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~mdw/git/stgit/commitdiff_plain/f211581b1a4133b3f666d3ab546f5d9e8c53481d Remove unused variable Signed-off-by: Karl Hasselström --- diff --git a/Documentation/Makefile b/Documentation/Makefile index 165e222..37df9ee 100644 --- a/Documentation/Makefile +++ b/Documentation/Makefile @@ -5,12 +5,10 @@ MAN1_TXT= stg.txt $(COMMANDS_TXT) DOC_HTML=$(patsubst %.txt,%.html,$(MAN1_TXT)) -ARTICLES = -# with their own formatting rules. -SP_ARTICLES = tutorial +ARTICLES = tutorial -DOC_HTML += $(patsubst %,%.html,$(ARTICLES) $(SP_ARTICLES)) -DOC_PDF += $(patsubst %,%.pdf,$(ARTICLES) $(SP_ARTICLES)) +DOC_HTML += $(patsubst %,%.html,$(ARTICLES)) +DOC_PDF += $(patsubst %,%.pdf,$(ARTICLES)) DOC_MAN1=$(patsubst %.txt,%.1,$(MAN1_TXT))