From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 583 invoked from network); 25 May 2009 14:03:29 -0000 X-Spam-Checker-Version: SpamAssassin 3.2.5 (2008-06-10) on f.primenet.com.au X-Spam-Level: X-Spam-Status: No, score=-2.6 required=5.0 tests=AWL,BAYES_00 autolearn=ham version=3.2.5 Received: from new-brage.dotsrc.org (HELO a.mx.sunsite.dk) (130.225.254.104) by ns1.primenet.com.au with SMTP; 25 May 2009 14:03:29 -0000 Received-SPF: none (ns1.primenet.com.au: domain at sunsite.dk does not designate permitted sender hosts) Received: (qmail 30325 invoked from network); 25 May 2009 14:03:20 -0000 Received: from sunsite.dk (130.225.247.90) by a.mx.sunsite.dk with SMTP; 25 May 2009 14:03:20 -0000 Received: (qmail 6007 invoked by alias); 25 May 2009 14:03:13 -0000 Mailing-List: contact zsh-workers-help@sunsite.dk; run by ezmlm Precedence: bulk X-No-Archive: yes X-Seq: 26990 Received: (qmail 5966 invoked from network); 25 May 2009 14:03:11 -0000 Received: from bifrost.dotsrc.org (130.225.254.106) by sunsite.dk with SMTP; 25 May 2009 14:03:11 -0000 Received: from bach.exherbo.org (bach.exherbo.org [78.47.197.147]) by bifrost.dotsrc.org (Postfix) with ESMTPS id BB54980307FA for ; Mon, 25 May 2009 16:02:55 +0200 (CEST) Received: from ingmar by bach.exherbo.org with local (Exim 4.69) (envelope-from ) id 1M8alT-0006DP-AF; Mon, 25 May 2009 14:02:55 +0000 From: Ingmar Vanhassel To: Zsh hackers list Cc: Ingmar Vanhassel Subject: [PATCH 2/2] Install all html docs again Date: Mon, 25 May 2009 14:02:28 +0000 Message-Id: <1243260148-23851-2-git-send-email-ingmar@exherbo.org> X-Mailer: git-send-email 1.6.3.1 In-Reply-To: <1243260148-23851-1-git-send-email-ingmar@exherbo.org> References: <1243260148-23851-1-git-send-email-ingmar@exherbo.org> X-Virus-Scanned: ClamAV 0.94.2/9390/Mon May 25 14:49:36 2009 on bifrost X-Virus-Status: Clean '26839: add --node-files option to texi2html' broke this. --- Doc/Makefile.in | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Doc/Makefile.in b/Doc/Makefile.in index c859c87..0b8cab5 100644 --- a/Doc/Makefile.in +++ b/Doc/Makefile.in @@ -332,14 +332,14 @@ uninstall.info: # install HTML manual install.html: html ${SHELL} $(sdir_top)/mkinstalldirs $(DESTDIR)$(htmldir) - for file in zsh*.html; do \ + for file in *.html; do \ $(INSTALL_DATA) $$file $(DESTDIR)$(htmldir) || exit 1; \ done .PHONY: install.html # uninstall HTML manual uninstall.html: - rm -f $(DESTDIR)$(htmldir)/zsh*.html + rm -f $(DESTDIR)$(htmldir)/*.html .PHONY: uninstall.html # ========== DEPENDENCIES FOR CLEANUP ========== -- 1.6.3.1