From mboxrd@z Thu Jan 1 00:00:00 1970 From: Nick Dokos Subject: Re: patch org-mode Makefile - solve a couple debian build problems and a slackware build problem Date: Sat, 09 Jul 2011 21:44:28 -0400 Message-ID: <9023.1310262268@alphaville.dokosmarshall.org> References: <8739ii885d.fsf@gnu.org> <21342.1310116208@alphaville.dokosmarshall.org> <87k4bsfmuv.fsf@Rainer.invalid> <4397.1310165406@alphaville.dokosmarshall.org> <87vcvckm0s.fsf@Rainer.invalid> <28121.1310227245@alphaville.dokosmarshall.org> <8917.1310262051@alphaville.dokosmarshall.org> Reply-To: nicholas.dokos@hp.com Return-path: Received: from eggs.gnu.org ([140.186.70.92]:55448) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Qfj4S-0007FN-CU for emacs-orgmode@gnu.org; Sat, 09 Jul 2011 21:44:33 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Qfj4R-0003Lx-38 for emacs-orgmode@gnu.org; Sat, 09 Jul 2011 21:44:31 -0400 Received: from vms173005pub.verizon.net ([206.46.173.5]:65433) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Qfj4Q-0003Ls-Qb for emacs-orgmode@gnu.org; Sat, 09 Jul 2011 21:44:30 -0400 Received: from alphaville.dokosmarshall.org ([unknown] [173.76.32.106]) by vms173005.mailsrvcs.net (Sun Java(tm) System Messaging Server 7u2-7.02 32bit (built Apr 16 2009)) with ESMTPA id <0LO300MDIGU45A00@vms173005.mailsrvcs.net> for emacs-orgmode@gnu.org; Sat, 09 Jul 2011 20:44:29 -0500 (CDT) In-reply-to: Message from Nick Dokos of "Sat, 09 Jul 2011 21:40:51 EDT." <8917.1310262051@alphaville.dokosmarshall.org> List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Cc: Jude DaShiell , Achim Gratz , emacs-orgmode@gnu.org, nicholas.dokos@hp.com Nick Dokos wrote: > Jude DaShiell wrote: > > > If a make is done on debian squeeze with default org-mode install-info > > which is debian's version of install-info complains that it's not gnu > > info and tells you to use ginstall-info when a make install-info-debian > > or make install-info is tried and neither one of those switches for make > > upgrades the info documentation. > > OK. Since a debian-specific target exists and is documented, how about > using ginstall-info explicitly in the install-info-debian target in the > Makefile like this: > > install-info-debian: $(INFOFILES) > ginstall-info --infodir=$(infodir) $(INFOFILES) > > Will this work for debian? > Actually, it probably needs to mirror the options in the standard case: ginstall-info --info-file=$(INFOFILES) --info-dir=$(infodir) Nick