From mboxrd@z Thu Jan 1 00:00:00 1970 From: Achim Gratz Subject: Re: patch org-mode Makefile - solve a couple debian build problems and a slackware build problem Date: Sun, 10 Jul 2011 09:24:34 +0200 Message-ID: <871uxylhsd.fsf@Rainer.invalid> 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> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Return-path: Received: from eggs.gnu.org ([140.186.70.92]:44065) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QfoNp-00034c-1q for emacs-orgmode@gnu.org; Sun, 10 Jul 2011 03:24:54 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QfoNn-0005yK-Qv for emacs-orgmode@gnu.org; Sun, 10 Jul 2011 03:24:53 -0400 Received: from lo.gmane.org ([80.91.229.12]:49373) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QfoNn-0005yC-EJ for emacs-orgmode@gnu.org; Sun, 10 Jul 2011 03:24:51 -0400 Received: from list by lo.gmane.org with local (Exim 4.69) (envelope-from ) id 1QfoNl-0002uX-LD for emacs-orgmode@gnu.org; Sun, 10 Jul 2011 09:24:49 +0200 Received: from p57aab2ac.dip.t-dialin.net ([87.170.178.172]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sun, 10 Jul 2011 09:24:49 +0200 Received: from Stromeko by p57aab2ac.dip.t-dialin.net with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sun, 10 Jul 2011 09:24:49 +0200 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 To: emacs-orgmode@gnu.org --=-=-= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Hi Jude, Jude DaShiell writes: > 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. If it tells you that it is GNU info, then you've actually called /usr/bin/install-info and it should — aside from this message — work: what did you set $infodir to? Does this directory exist and have the new info files been copied into it (there may be old files still there, so please check the date)? Anyway, from the man pages it looks like this patch should remove the incompatibility between dpkg install-info and GNU install-info on Debian and not change anything for others. --=-=-= Content-Type: text/x-patch Content-Disposition: inline; filename=0001-possible-solution-for-Debian-install-info-charade.patch >From a2399077495e716d0dd1faa3d491a379d2015065 Mon Sep 17 00:00:00 2001 From: Achim Gratz Date: Sun, 10 Jul 2011 08:42:20 +0200 Subject: [PATCH] possible solution for Debian install-info charade --- Makefile | 3 --- 1 files changed, 0 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index a09ed83..a2940b0 100644 --- a/Makefile +++ b/Makefile @@ -221,9 +221,6 @@ install-lisp: $(LISPFILES) $(ELCFILES) install-info: $(INFOFILES) if [ ! -d $(infodir) ]; then $(MKDIR) $(infodir); else true; fi ; $(CP) $(INFOFILES) $(infodir) - $(INSTALL_INFO) --info-file=$(INFOFILES) --info-dir=$(infodir) - -install-info-debian: $(INFOFILES) $(INSTALL_INFO) --infodir=$(infodir) $(INFOFILES) autoloads: lisp/org-install.el -- 1.7.6 --=-=-= You will still get the warning about the two install-info versions on Debian if you call it through their wrapper script, but based on my (limited) testing it should work with all versions of install-info if the rest of the setup is OK. Can you please test this? Regards, Achim. -- +<[Q+ Matrix-12 WAVE#46+305 Neuron microQkb Andromeda XTk Blofeld]>+ Wavetables for the Terratec KOMPLEXER: http://Synth.Stromeko.net/Downloads.html#KomplexerWaves --=-=-=--